import moment from 'moment'; import { DateType } from '.'; export declare const TYPES: { name: string; type: DateType; }[]; export declare const date: { minDate: Date; maxDate: Date; today: Date; yesterday: Date; lastMonthsVal: Date; }; export declare const formatYYYYMMDDCN: (val?: any) => string; export declare const defaultStartTime: (disabledToday?: boolean) => { text: string; value: moment.Moment; }; export declare const defaultEndTime: (disabledToday?: boolean) => { text: string; value: moment.Moment; }; export declare const dateInitValue: (type: DateType, disabledToday?: boolean) => string | string[] | undefined;