@react-beauty/ui-core
Version:
ui-core
12 lines (11 loc) • 414 B
TypeScript
import { FC, ReactNode } from 'react';
import { ReactBeautyUITheme } from './types';
export declare const globals: import('@linaria/core').LinariaClassName;
export interface ReactBeautyUIProviderProps {
children: ReactNode;
/**
* The default theme to use for the application.
*/
defaultTheme?: ReactBeautyUITheme;
}
export declare const ReactBeautyUIProvider: FC<ReactBeautyUIProviderProps>;