/// declare type Props = { value: number; }; /** * Price component responsible for display of standardized price formats with currency symbol. * * It accepts amount in EUR, it converts and formats the amount to currently selected currency stored in the Currency Provider. * * Use {@link PriceFormat} for display of a price which is already converted. * * @param value - amount in EUR. */ declare const Price: ({ value }: Props) => JSX.Element; export default Price;