declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .MuiDrawer-paper': {
                [x: number]: {
                    width: any;
                };
                width: string;
            };
            '& .SCNavigationMenuDrawer-drawer-header': {
                minHeight: any;
                padding: string;
                display: string;
                justifyContent: string;
                '& > a:first-of-type': {
                    display: string;
                    justifyContent: string;
                    alignContent: string;
                    flexWrap: string;
                };
                '& img': {
                    maxHeight: number;
                    paddingLeft: any;
                };
            };
            '& .SCNavigationMenuDrawer-drawer-content': {
                paddingTop: number;
            };
            '& .MuiTypography-subtitle1': {
                fontSize: string;
                padding: any;
                '& MuiButton-root': {
                    padding: any;
                };
                '& span:first-of-type': {
                    color: string;
                };
            };
            '& .SCBaseItemButton-text ': {
                maxWidth: string;
            };
            '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
                margin: any;
                maxWidth: number;
            };
        };
    };
};
export default Component;
