import React from 'react';
import { StyleSheetManager } from 'styled-components';
export type BothubStyleSheetManagerProps = React.ComponentProps<typeof StyleSheetManager> & {
    variant?: 'main' | 'dashboard';
};
export declare const BothubStyleSheetManager: ({ children, variant, ...props }: BothubStyleSheetManagerProps) => import("react/jsx-runtime").JSX.Element;
