import { FC } from "react"; import { API, CurrentChain, WithdrawStatus } from "@orderly.network/types"; type DST = { symbol: string; address?: string; decimals?: number; chainId: number; network: string; }; export interface WithdrawProps { dst: DST; status?: WithdrawStatus; chains: API.NetworkInfos[]; chain: CurrentChain | null; address?: string; walletName?: string; decimals: number; minAmount: number; maxAmount: number; availableBalance: number; unsettledPnL: number; hasPositions: boolean; switchChain: (options: { chainId: string; }) => Promise; onWithdraw: (inputs: { chainId: number; token: string; amount: string; allowCrossChainWithdraw: boolean; }) => Promise; onOk?: (data: any) => void; } export declare const WithdrawForm: FC; export {}; //# sourceMappingURL=withdrawForm.d.ts.map