export { fitScale } from '../../utils/v2/amountRowGeometry'; export interface AmountDisplayProps { /** The typed amount, or `''` for the placeholder. */ value: string; /** Written before the number. */ prefix?: string; /** Tints the amount, matching the message that replaces the balance line. */ hasError?: boolean; /** Over-limit flash: yellow (stronger than {@link hasError}). */ hasWarning?: boolean; accessibilityLabel: string; } /** * The amount, read-only and driven by the numpad — it looks like a field but * isn't one, so tapping it must not open a keyboard. * * Each character is its own node so it can move on its own: digits and group * separators grow up from the baseline into the number and shrink back out, * while the placeholder lifts off the top instead. */ export declare function AmountDisplay({ value, prefix, hasError, hasWarning, accessibilityLabel, }: AmountDisplayProps): import("react").JSX.Element; //# sourceMappingURL=AmountDisplay.d.ts.map