import { SelectProps } from '../types'; import { State, Action } from './types'; export declare const getInitialState: (args: { defaultValue: SelectProps['defaultValue']; }) => State; export declare const reducer: (state: State, action: Action) => State;