import { DateOrDateRangeType } from '../Calendar'; export declare type DatePickerValue = DateOrDateRangeType | null; export declare type DatePickerInputValueParserParameters = { customParser?: DatePickerInputCustomValueParser; dateFormat: string; minDate?: Date; maxDate?: Date; timezone?: string; }; export declare type DatePickerInputCustomValueParserParameters = { timezone?: string; }; export declare type DatePickerInputCustomValueParser = (value: string, params: DatePickerInputCustomValueParserParameters) => Date | null | undefined;