kawkab-frontend
Version:
Kawkab frontend is a frontend library for the Kawkab framework
11 lines (10 loc) • 403 B
TypeScript
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 {};