import { ReactNode } from 'react'; import { Locale, TranslationDictionary } from './I18nProvider'; export interface ProfileI18nBridgeProps { children: ReactNode; /** Product ID for translations in the i18n service (created during DB seeding) */ i18nProductId: string; /** Default locale (default: "en") */ defaultLocale?: Locale; /** Static fallback translations */ fallbackTranslations?: Record; /** Disable live translation fetches and rely on static fallbacks only */ disableDynamicFetch?: boolean; } export declare function ProfileI18nBridge({ children, i18nProductId, defaultLocale, fallbackTranslations, disableDynamicFetch, }: ProfileI18nBridgeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ProfileI18nBridge.d.ts.map