export * from './convertDate'; export * from './formatWeek'; export * from './getDate'; export * from './getMonthDay'; export * from './getSplitDay'; type TDate = string | Date | undefined; export declare function toDateTime(date?: TDate, format?: string): string; export declare function toDate(date?: TDate, format?: string): string; export declare function toY(date?: TDate, format?: string): string; export declare function toYM(date?: TDate, format?: string): string; export declare function toMD(date?: TDate, format?: string): string; export declare function toYMD(date?: TDate, format?: string): string; export declare function toYMDHM(date?: TDate, format?: string): string;