import type { ReactNode } from 'react'; export interface WithdrawSourceCardProps { /** The 36px token-on-chain avatar. */ icon: ReactNode; /** The source as the host names it, e.g. `USDC (Perps)`. */ title: string; /** The spendable balance, already grouped and denominated. */ subtitle?: string; useMaxLabel: string; /** Omitted once an amount is typed, or when no balance is known. */ onUseMax?: () => void; /** Omitted when the host offers a single source — nothing to pick. */ onPress?: () => void; accessibilityLabel: string; /** Squares the foot of the card off for the button that overlaps it. */ attachedToButton?: boolean; } /** * What the withdrawal is drawn from, sitting above the keypad: the source * token, its balance, and the shortcut that spends all of it. */ export declare function WithdrawSourceCard({ icon, title, subtitle, useMaxLabel, onUseMax, onPress, accessibilityLabel, attachedToButton, }: WithdrawSourceCardProps): import("react").JSX.Element; //# sourceMappingURL=WithdrawSourceCard.d.ts.map