import type { WithdrawalSourceTokenOption } from '../flow/withdrawalFlowConfig'; export interface SelectSourceTokenScreenProps { options: WithdrawalSourceTokenOption[]; /** Index into `options` — two options can share a symbol (perps vs spot). */ selectedIndex: number; onSelect: (index: number) => void; onBack: () => void; } /** * Pick which balance the withdrawal comes out of. Flat, not grouped by chain: * the sources a host offers are balances on one venue, and two of them can * share a symbol (Lighter's perps and spot USDC), so the row identity is the * option itself rather than its symbol. */ export declare function SelectSourceTokenScreen({ options, selectedIndex, onSelect, onBack, }: SelectSourceTokenScreenProps): import("react").JSX.Element; //# sourceMappingURL=SelectSourceTokenScreen.d.ts.map