export interface GlobalProps {
    styles?: {
        [key: string]: string;
    };
    classes?: string;
    variant?: string;
    size?: string;
}
export declare const injectGlobalCSS: (shadowRoot?: ShadowRoot) => void;
export declare const getGlobalPropsClasses: ({ classes, variant, size }: GlobalProps) => string;
