Rezi
    Preparing search index...

    Type Alias SidebarOptions

    SidebarOptions: Readonly<
        {
            id?: string;
            items: readonly SidebarItem[];
            key?: string;
            onSelect?: (id: string) => void;
            selected?: string;
            title?: string;
            width?: number;
        },
    >