import { default as React, HTMLAttributes } from 'react';
import { PriceFormatter } from '../../atoms/Price';
export interface ProductPriceProps extends HTMLAttributes {
/**
* Specifies product's raw price value.
*/
value: number;
/**
* Specifies product's listing price.
*/
listPrice: number;
/**
* Formatter function that transforms the raw price value and render the result.
*/
formatter?: PriceFormatter;
/**
* ID to find this component in testing tools (e.g.: cypress,
* testing-library, and jest).
*/
testId?: string;
}
declare const ProductPrice: React.ForwardRefExoticComponent>;
export default ProductPrice;
//# sourceMappingURL=ProductPrice.d.ts.map