declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            color: any;
            marginTop: any;
            marginBottom: any;
            borderRadius: string;
            padding: any;
            minWidth: number;
            '& .MuiIcon-root': {
                fontSize: string;
            };
            '&.MuiButton-sizeSmall': {
                padding: any;
                '& .MuiIcon-root': {
                    fontSize: string;
                };
            };
        };
        popperRoot: ({ theme }: any) => {
            zIndex: number;
            '& .SCVoteButton-reaction .MuiIcon-root': {
                fontSize: string;
            };
        };
    };
};
export default Component;
