@clerk/clerk-js
Version:
Clerk JS library
8 lines (7 loc) • 308 B
TypeScript
import React from 'react';
import type { InternalTheme } from './types';
type InternalThemeProviderProps = React.PropsWithChildren<{
theme?: InternalTheme;
}>;
export declare const InternalThemeProvider: (props: InternalThemeProviderProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};