export declare const dateToCustomFormat: (date: Date, formatString: string) => string; export declare const dateToLocalIsoString: (date?: Date) => string; export declare const dateToUTCString: (date?: Date) => string; export declare const formatDateToString: (date: Date, { onlyDate, onlyTime }?: { onlyDate?: boolean; onlyTime?: boolean; }) => string; export declare const formatTimestamp: (timestamp: string, { onlyDate, onlyTime, UTCSensitive, }?: { onlyDate?: boolean; onlyTime?: boolean; UTCSensitive?: boolean; }) => string; export declare const stringToDate: (dateStringIso: string, { defaultUTC }?: { defaultUTC?: boolean; }) => Date; //# sourceMappingURL=formatFunctions.d.ts.map