import { TDateFormat } from './types';
/**
 * 格式化日期时间
 *
 * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
 */
export default function formatDate(date: Date, format?: TDateFormat, locale?: string): string;
