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; accessibilityLabel: string; } /** * The withdrawal 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 rise into the * number and drop back out, while the placeholder lifts off the top instead. */ export declare function AmountDisplay({ value, prefix, hasError, accessibilityLabel, }: AmountDisplayProps): import("react").JSX.Element; //# sourceMappingURL=AmountDisplay.d.ts.map