declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCUserCounters-button': {
                color: any;
                padding: any;
                borderRadius: number;
                fontSize: string;
                fontWeight: any;
                '& strong': {
                    display: string;
                    marginRight: any;
                    fontWeight: any;
                };
                '&:hover, &:active': {
                    color: any;
                };
            };
        };
    };
};
export default Component;
