export declare const useCategoryUiStore: () => { expandedGuid: string | null; selectedGuid: string | null; searchValue: string; showSelected: boolean; shouldDisableDrawerScroll: boolean; unselectable: string[]; unselectableText: string; savedOnSelect: any; setExpandedGuid: (guid: string | null) => string | null; setSelectedGuid: (guid: string | null) => string | null; setSearchValue: (value: string) => string; setShouldDisableDrawerScroll: (shouldDisable: boolean) => boolean; setShowSelected: (showSelected: boolean) => boolean; setUnselectable: (unselectable: string[]) => string[]; setUnselectableText: (text: string) => string; onSelect: (guid: string) => any; setOnSelect: (callback: any) => any; };