import { type ReactNode } from 'react'; export interface I18nProviderProps { /** Force a specific language. If omitted, uses browser language detection with 'en' fallback. */ lng?: string; children: ReactNode; } export declare function I18nProvider({ lng, children }: I18nProviderProps): import("react/jsx-runtime").JSX.Element; /** * Hook for components inside @vertesia/ui to get translation functions. * Always binds to the 'vertesia.ui' namespace on the scoped instance. */ export declare function useUITranslation(): import("react-i18next").UseTranslationResponse<"vertesia.ui", undefined>; export { i18nInstance, NAMESPACE } from './instance.js'; //# sourceMappingURL=index.d.ts.map