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>;
