@bothub-chat/ui
Version:
Bothub UI Components
10 lines (9 loc) • 385 B
TypeScript
import React from 'react';
import { BothubGlobalStyleProps } from '@/ui/styles';
import { ThemeProviderProps } from '@/ui/theme';
export interface BothubUIProviderProps extends React.PropsWithChildren {
theme?: ThemeProviderProps;
disableGlobalStyle?: boolean;
globalStyle?: BothubGlobalStyleProps;
}
export declare const BothubUIProvider: React.FC<BothubUIProviderProps>;