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