import React from 'react'; import { PriceProps } from '../Price'; export interface CardPriceProps extends React.HTMLAttributes { price: number; oldPrice?: number; currency?: PriceProps['currency']; count?: number; } export declare const CardPrice: React.FC; //# sourceMappingURL=CardPrice.d.ts.map