import type { Option, OptionGroups, ValueType, UseSelectStateOutput } from '../../types'; export declare const EMPTY_INPUT_VALUE = ""; export interface Props { getDisplayValue: (option: Option | null) => string; filterFlatOptions?: (options: Option[], filterOptionsValue: string, getDisplayValue: (option: Option | null) => string) => Option[]; options: Option[] | OptionGroups; disabled?: boolean; multiple?: boolean; value?: ValueType | ValueType[]; searchThreshold?: number; limit?: number; } declare const useSelectState: (props: Props) => UseSelectStateOutput; export default useSelectState; //# sourceMappingURL=use-select-state.d.ts.map