import { type ReactNode } from 'react'; import type { FlowNav, FlowScreen } from './FunkitFlowProvider'; import type { WithdrawalFlowCallbacks, WithdrawalFlowConfig } from './withdrawalFlowConfig'; /** * The live withdrawal-flow body (Swapped fiat offramp): payout-method list → * the Swapped sell embed → on a validated order, the on-chain leg * ({@link useWithdrawalExecution}) delivers the exact ordered amount to * Swapped's deposit address through the host wallet. Sibling of the deposit * FlowContent, mounted only while a withdrawal flow is open so its * queries run only then. */ export declare function WithdrawalFlowContent({ checkoutId, config, callbacks, current, nav, }: { checkoutId: string; config: WithdrawalFlowConfig; callbacks: WithdrawalFlowCallbacks; current: FlowScreen | undefined; nav: FlowNav; }): ReactNode; //# sourceMappingURL=WithdrawalFlowContent.d.ts.map