declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            backgroundColor: any;
            '& .SCBottomNavigation-action': {
                fontSize: string;
                color: any;
                borderTop: string;
                minWidth: number;
                '&.Mui-selected, &:hover': {
                    color: any;
                    borderTop: string;
                };
                '&.SCBottomNavigation-composer': {
                    '&.Mui-selected, &:hover': {
                        color: any;
                        borderTop: string;
                    };
                };
            };
            '&.SCBottomNavigation-ios': {
                paddingBottom: string;
            };
        };
    };
};
export default Component;
