import type { Translations, SupportedLocale } from "./types"; /** * Detect locale from browser navigator.language. * Returns the matching SupportedLocale or "en" as fallback. */ export declare function detectLocale(): SupportedLocale; /** * Get translations for a given locale (defaults to detected locale) */ export declare function getTranslations(locale?: SupportedLocale): Translations; /** * Deep-merge custom translation overrides with base locale translations */ export declare function mergeTranslations(locale: SupportedLocale, custom: Partial): Translations; export type { Translations, BannerTranslations, PreferenceCenterTranslations, CategoryTranslations, CCPATranslations, SupportedLocale, } from "./types";