/** * @title: 格式化时间 * @description: * @param {Moment} date 时间 * @param {string} cnFormat 中文 * @param {string} enFormat 英文 * @return {*} * @Author: Wzw * @Date: 2022-07-28 11:57 */ export declare const formatDate: (date: any, cnFormat?: string, enFormat?: string) => string;