declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            marginBottom: any;
            borderRadius: string;
            boxShadow: string;
            backgroundColor: any;
            '& .MuiCardContent-root': {
                '& .SCBaseItem-root': {
                    backgroundColor: string;
                };
                '& .MuiTypography-body1': {
                    [x: number]: {
                        fontSize: any;
                    };
                    fontWeight: number;
                    color: any;
                };
            };
            '& .SCPaymentProductPrice-root': {
                width: string;
                paddingLeft: string;
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            marginBottom: any;
            borderRadius: string;
            boxShadow: string;
            backgroundColor: any;
            '& .MuiCardContent-root': {
                marginBottom: any;
                '& .SCBaseItem-root': {
                    backgroundColor: string;
                    boxShadow: string;
                };
            };
            '& .SCPaymentProductPrice-skeleton-root': {
                marginTop: any;
                width: string;
                paddingLeft: string;
            };
        };
    };
};
export default Component;
