import { ReactNode } from 'react'; type Props = { abbreviate?: boolean; showPlus?: boolean; description?: string; children: ReactNode; showFiatAsInteger?: boolean; }; /** * AmountDisplay component shows an amount in either satoshis or fiat currency. * The component allows the user to toggle between viewing amounts in satoshis or fiat, * and cycle through different formatting options. * * @param {object} props - The props that are passed to this component * @param {boolean} props.abbreviate - Flag indicating if the displayed amount should be abbreviated * @param {boolean} props.showPlus - Flag indicating whether to show a plus sign before the amount * @param {number|string} props.children - The amount (in satoshis) to display, passed as the child of this component * * Note: The component depends on the ExchangeRateContext for several pieces of data related to * currency preference, exchange rates, and formatting options. */ declare const AmountDisplay: React.FC; export default AmountDisplay;