import type { AvailableChain } from '../transfer/availableChains'; interface Props { targetAmount: string; tokenAmount?: string; amountError?: boolean; amountLoading?: boolean; onRetryAmount?: () => void; tokenSymbol: string; depositAddress?: string; selectedChain?: AvailableChain; onCopy: (value: string, label?: string) => void; onBack: () => void; onClose: () => void; onChangeChain: () => void; } /** Figma's one-time-address layout; the selected asset and network determine the send amount. */ export declare function LockedTransferCryptoScreen({ targetAmount, tokenAmount, amountError, amountLoading, onRetryAmount, tokenSymbol, depositAddress, selectedChain, onCopy, onBack, onClose, onChangeChain, }: Props): import("react").JSX.Element; export {}; //# sourceMappingURL=LockedTransferCryptoScreen.d.ts.map