import type { Locale, LongDateFormat } from '../settings/types'; import type { DateTime } from '../typings'; export declare function expandFormat(format: string, formats?: LongDateFormat): string; export declare const FORMAT_DEFAULT = "YYYY-MM-DDTHH:mm:ssZ"; export declare function formatDate(date: DateTime, format?: string, locale?: Locale): string;