import type { TFlatList, TSectionList } from '../types/index.types'; interface UseSearchProps { initialOptions: TFlatList | TSectionList; optionLabel: string; optionValue: string; searchCallback: (value: string) => void; } export declare const useSearch: ({ initialOptions, optionLabel, optionValue, searchCallback, }: UseSearchProps) => { searchValue: string; setSearchValue: import("react").Dispatch>; filteredOptions: TFlatList | TSectionList; setFilteredOptions: import("react").Dispatch>; isSectionList: boolean; }; export {}; //# sourceMappingURL=use-search.d.ts.map