import { default as React } from 'react';
import { ThemeValues } from '../../theme';
export interface WuiProviderProps {
    children?: React.ReactNode;
    hasGlobalStyle?: boolean;
    reactRootId?: string;
    shouldHideFocusRingOnClick?: boolean;
    theme: ThemeValues;
    useReset?: boolean;
}
export declare const WuiProvider: React.FC<WuiProviderProps>;
declare const GlobalStyle: React.NamedExoticComponent<import('styled-components').ExecutionProps & {
    useReset?: boolean;
}>;
export { GlobalStyle };
