import { InputState } from "../../../state/components/input/reducer";
import { StateSetters } from "../../../state/components/input/useStateSetters";
import { DatePickerTValue } from "./reducer";
import { BaseState, DefaultState } from "../BaseState";
export type DatePickerState = BaseState & InputState<DatePickerTValue> & StateSetters<DatePickerTValue>;
export type InitialDatePickerState = {
    value?: Date;
    disabled?: boolean;
};
export declare const DefaultDatePickerState: DefaultState<DatePickerState>;
