import { SelectState, SelectOption, SelectProps } from '../types'; export declare const useOptions: (baseOptions: SelectProps["options"], filter: SelectProps["filter"], onLoadMore: SelectProps["onLoadMore"]) => { options: SelectOption[]; filtred: SelectOption[]; state: SelectState | `${SelectState}`; setState: (state: SelectState) => void; filterOptions: (query: string) => void; loadMore: (target: HTMLDivElement | undefined) => void; };