export interface SelectReceiveTokenScreenProps { tokens: string[]; selectedToken?: string; /** Drafts the token and hands control back to the screen underneath. */ onSelectToken: (token: string) => void; onClose: () => void; } /** * Every token a withdrawal can be received as, searchable — the tail behind the * grid's `+N tokens` row. A tap drafts and returns; only the grid commits. */ export declare function SelectReceiveTokenScreen({ tokens, selectedToken, onSelectToken, onClose, }: SelectReceiveTokenScreenProps): import("react").JSX.Element; //# sourceMappingURL=SelectReceiveTokenScreen.d.ts.map