type ResType = { name: string; secondaryOption?: string; disabled?: boolean; }[]; type APIResType = { title: string; secondary?: string; disabled?: boolean; }[]; export declare const generateArray: (count: number, secondaryText?: boolean, disabled?: boolean) => ResType; export declare const useApiMultiSelectStory: (search?: string) => { apiData: APIResType; selectedData: APIResType; fetchNew: () => void; setSelectedData: import('react').Dispatch>; }; export declare const multiSelectOptions: ResType; export declare const multiSelectDisabledList: ResType; export declare const genericPropsMultiSelect: { formLabelProps: { label: string; }; selectedOptions: never[]; options: ResType; searchProps: { value: string; placeholder: string; }; emptyStateProps: { primaryText: string; secondaryText: string; }; }; export declare const generateDummyNestedMultiSelectData: () => { id: number; name: string; is_leaf_node: boolean; is_root_node: boolean; parent_category_id: null; root_category_id: number; sub_category_count: number; children: never[]; }[]; export {};