export declare const SUPPORTED_LOCALES: readonly ["en", "de", "fr", "pl", "uk", "hu"]; export type SupportedLocale = (typeof SUPPORTED_LOCALES)[number]; export declare const DEFAULT_LOCALE: SupportedLocale; interface Translations { iAmHuman: string; verificationFailed: string; verifying: string; ariaCheckbox: string; ariaVerifying: string; ariaSuccess: string; ariaFailed: string; srLoading: string; srSuccess: string; srFailed: string; ariaProgress: string; } export declare const translations: Record; export declare const isSupportedLocale: (locale: string) => locale is SupportedLocale; export declare const normalizeLocale: (locale: string) => SupportedLocale; export declare const detectBrowserLocale: () => SupportedLocale; export declare const getTranslations: (locale: SupportedLocale) => Translations; export {};