import { ReactNode } from 'react';
interface TranslationProviderProps {
    children: ReactNode;
    resources: Record<string, any>;
    defaultLang?: string;
    currentLang?: string;
    cookieHeader?: string;
}
export declare function TranslationProvider({ children, resources, defaultLang, currentLang, cookieHeader, }: TranslationProviderProps): import("react/jsx-runtime").JSX.Element;
export {};
