/// import React, { FunctionComponent } from 'react'; export interface PropsType { hideCurrency?: boolean; superScriptFraction?: boolean; value: number; freeLabel?: string; strikethrough?: boolean; fractionFormat?: 'none' | 'dash'; locale: string; currency: string; minor?: boolean; 'data-testid'?: string; } /** * This component renders a span with the locale aware version of the price. * It also allows you to render some common design patterns for prices like * superscripting the fraction or hiding the decimal when they equal 0. */ declare const PriceTag: FunctionComponent>; export default PriceTag;