export declare const padLeft: (val: any) => any; export declare const getMonthStr: (val: any) => string; export declare const getDateStr: (val: any) => string; export declare const isSameDate: (val: any, cmp: any) => boolean; export declare const isCurrentMonth: (val: any) => boolean; export declare const isBeforeMonth: (val: any, cpr: any) => boolean; export declare const isAfterMonth: (val: any, cpr: any) => boolean; export declare const goDays: (val: any, diff: any) => Date; export declare const goMonths: (val: any, diff: any) => Date; export declare const goYears: (val: any, diff: any) => Date; export declare const cloneFromDate: (target: any) => Date; export declare function formatDate(date: any, format: any, locale?: import("zent/es/utils/date/fecha").IFechaI18nSettings): string; export declare function parseDate(dateStr: any, format: any, locale?: import("zent/es/utils/date/fecha").IFechaI18nSettings): Date; export declare function monthStart(date?: Date): any; export declare function dayStart(date?: Date): any; export declare function dayEnd(date?: Date): any; export declare function setTime(date: Date, time?: Date | string): Date; export declare const commonFns: { goDays: (val: any, diff: any) => Date; goMonths: (val: any, diff: any) => Date; goYears: (val: any, diff: any) => Date; setTime: typeof setTime; dayStart: typeof dayStart; dayEnd: typeof dayEnd; parseDate: typeof parseDate; formatDate: typeof formatDate; };