declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            borderRadius: number;
            boxShadow: string;
            '& .SCPaymentProductPrice-primary': {
                fontSize: string;
                fontWeight: string;
                color: string;
            };
            '& .SCPaymentProductPrice-button': {
                textTransform: string;
                '&:hover, &:active': {
                    backgroundColor: any;
                    color: any;
                    border: string;
                    '& .MuiIcon-root': {
                        color: any;
                    };
                };
            };
            '& .SCPaymentProductPrice-button-purchased': {
                backgroundColor: string;
                color: string;
            };
            '& .SCPaymentProductPrice-purchased-at': {
                textDecoration: string;
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            borderRadius: number;
        };
    };
};
export default Component;
