import { InputState } from "../../../state/components/input/reducer";
import { StateSetters } from "../../../state/components/input/useStateSetters";
import { SelectTValue } from "./reducer";
import { BaseState, DefaultState } from "../BaseState";
export type SelectState = BaseState & InputState<SelectTValue> & StateSetters<SelectTValue>;
export type InitialSelectState = {
    value?: string | number;
    disabled?: boolean;
};
export declare const DefaultSelectState: DefaultState<SelectState>;
