/** * Default locale for the application (ISO 639-1 language code) */ export declare const DEFAULT_LOCALE = "en"; /** * List of supported locale codes for the application */ export declare const SUPPORTED_LOCALES: readonly ["en", "es", "pt"]; /** * Default timezone for the application (IANA timezone identifier) */ export declare const TIMEZONE = "America/Sao_Paulo"; /** * Default timezone offset from UTC */ export declare const TIMEZONE_OFFSET = -3; /** * Default country code (ISO 3166-1 alpha-2) */ export declare const DEFAULT_COUNTRY = "BR"; /** * Default currency code (ISO 4217) */ export declare const DEFAULT_CURRENCY = "BRL"; /** * Default language code (ISO 639-1) */ export declare const DEFAULT_LANGUAGE = "en"; /** * Type for supported locales */ export type SupportedLocale = (typeof SUPPORTED_LOCALES)[number]; //# sourceMappingURL=locales.d.ts.map