import type { FC, PropsWithChildren } from 'react'; import type { LanguageKey } from './types.js'; interface I18nProviderProps { locale?: LanguageKey; } export declare const I18nProvider: FC>; export {};