kawkab-frontend
Version:
Kawkab frontend is a frontend library for the Kawkab framework
16 lines (15 loc) • 371 B
TypeScript
import { ReactNode } from "react";
type Data = {
kawkab?: {
translations?: {
resourcesTranslations?: any;
currentLang?: string;
cookieHeader?: string;
};
};
};
export declare function Kawkab({ children, data, }: {
children: ReactNode;
data: Data;
}): import("react/jsx-runtime").JSX.Element;
export {};