Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import React from 'react';
import { ProductPriceProps } from './typings';
import { defaultRenderWrapper, defaultRenderSalePrice, defaultRenderRegularPrice } from './renderProps';
declare class ProductPrice extends React.PureComponent<ProductPriceProps> {
static defaultProps: {
className: string;
regularPrice: string;
renderWrapper: typeof defaultRenderWrapper;
renderSalePrice: typeof defaultRenderSalePrice;
renderRegularPrice: typeof defaultRenderRegularPrice;
};
render(): React.ReactNode;
}
export { ProductPrice };
export default ProductPrice;