import type { WithdrawalToken } from '../flow/withdrawalFlowConfig'; export interface ReceiveAsRowProps { /** The picked destination, or `undefined` while the list is resolving. */ destinationToken: WithdrawalToken | undefined; /** Opens the receive-token picker. */ onPress: () => void; } /** * What the withdrawal is received as, and the way to change it. Shared by the * screens that show it — the row is the same on both, and a second copy is how * the label and the token/chain wording drift apart. */ export declare function ReceiveAsRow({ destinationToken, onPress }: ReceiveAsRowProps): import("react").JSX.Element; //# sourceMappingURL=ReceiveAsRow.d.ts.map