import { DateTime } from 'luxon'; export declare const DATE_TIME = "yyyy-LL-dd hh:mm:ss"; export declare const ISO_8601 = "yyyy-LL-dd'T'HH:mm:ssZZZ"; export default class DateTimeUtils { static get utcDate(): Date; static getFormattedDate(date: DateTime, format: string): string; static getTimestamp(date: Date): number; }