interface Formats { number: Record; date: Record; time: Record; } interface Options { fallbackLocale: string; initialLocale: string; formats: Formats; loadingDelay: number; warnOnMissingMessages: boolean; } export declare const defaultFormats: Formats; export declare function getCurrentLocale(): string; export declare function setCurrentLocale(val: string): string; export declare function getOptions(): Options; export declare function getPossibleLocales(refLocale: string, fallbackLocale?: string): string[]; export {};