@multinite_official/multiui
Version:
The first and only Component Framework.
16 lines (15 loc) • 474 B
TypeScript
import { type ReactNode } from "react";
type ThemeContextType = {
getThemeId: () => string;
};
export declare const ThemeContext: import("react").Context<ThemeContextType>;
/**
* This component is used internally only.
*
*/
export declare function ThemeContextProvider({ children, themeId, }: {
children?: ReactNode;
themeId: string;
}): import("react/jsx-runtime").JSX.Element;
export declare function useInternalThemeContext(): ThemeContextType;
export {};