import type { OptionsType, OptionType } from '../types'; import type { ActionType, CreateInitialStateType, State } from './types'; export declare const reducer: (state: State, action: ActionType) => State; export declare const createInitialState: ({ options, searchable, animation, defaultOption, }: CreateInitialStateType) => { isOpened: boolean; selectedOption: OptionType | OptionType[] | null; selectedOptionIndex: number | number[] | never[]; searchedOptions: never[]; searchInputRef: null; openedPosition: { width: number; top: number; left: number; aboveSelectControl: boolean; }; optionsData: OptionsType; searchValue: string | null; animationDuration: number; }; //# sourceMappingURL=reducer.d.ts.map