import * as React from "react"; declare type Props = { value: number; currencyCode: string; loader?: React.ReactNode; }; /** * Price component responsible for display of standardized price format with currency symbol. * * Does not convert prices. Use {@link Price} for conversion instead. * * @param value - final amount used for display * @param currencyCode - currency code by which currency symbol is chosen * @param loader - component displayed while currencies are being fetched. Defaults to Orbit inline loader */ declare const PriceFormat: ({ value, currencyCode, loader, }: Props) => JSX.Element; export default PriceFormat;