export declare const formatShortDate: (date: string | Date, timeZone: string) => string; export declare const formatFullDate: (date: string | Date, timeZone: string, showTimeZone: boolean) => string; export declare const formatMonthDayYear: (date: string | Date, timeZone: string | undefined) => string; export declare const formatTime: (date: string | Date, timeZone: string) => string; export declare const formatTimeRange: (startDate: string | Date, endDate: string | Date, timeZone: string) => string; export declare const getDurationInMinutes: (startDate: string | Date, endDate: string | Date) => number;