declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            padding: string;
            '& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
                margin: any;
                flexGrow: number;
                '& img': {
                    verticalAlign: string;
                    maxHeight: string;
                };
            };
            '& .SCNavigationToolbarMobile-logo-flex': {
                flexGrow: number;
            };
            '& .MuiIconButton-root': {
                color: any;
            };
            '& h4': {
                fontSize: string;
                overflow: string;
                textOverflow: string;
                whiteSpace: string;
            };
        };
        skeletonRoot: ({ theme }: any) => {
            '& .SCNavigationToolbarMobile-logo': {
                width: number;
                height: number;
            };
        };
    };
};
export default Component;
