import '../../extensions/StringExtensions'; /** * Simple conversion of a date object to a specified string format * @param {string} format The format of the date to convert. For example "MM/dd/yyyy" Possible values are: yyyy, yy, MM, M, dd, d, HH, H, mm, m, ss, s * @param {Date} [date] Optional date to be used to convert it to the specified format. If no date is specified, the current date is used. * @return {string} Returns the converted date value in the specified format * @since 1.2.0 */ export default function formatDate(format: string, date?: Date): string; //# sourceMappingURL=formatDate.d.ts.map