export declare type Locale = Intl.ResolvedDateTimeFormatOptions["locale"]; export declare type FormatOptions = Intl.DateTimeFormatOptions; export interface LocaleOptions { locale: Locale | Locale[]; } declare function intlFormat(date: string): string; declare function intlFormat(date: string, localeOptions: LocaleOptions): string; declare function intlFormat(date: string, formatOptions: FormatOptions): string; declare function intlFormat(date: string, formatOptions: FormatOptions, localeOptions: LocaleOptions): string; export default intlFormat;