export declare let DEFAULT_LANG: string; export declare function setDefault(lang: string): void; export type gramFn = (num: number | string, unit: string) => string; export type Localization = { months: string[]; days: string[]; daysLetter: string[]; intWords: { beforeGram: gramFn; afterGram: gramFn; second: [string, string, string]; minute: [string, string, string]; hour: [string, string, string]; day: [string, string, string]; week: [string, string, string]; month: [string, string, string]; year: [string, string, string]; }; }; export declare function fromString(s: string): Localization | null; export declare function fromAny(a: any): Localization | null; export declare const german: Localization; export declare const english: Localization; export declare const french: Localization; //# sourceMappingURL=localization.d.ts.map