import { FctAddress, FctAddressList, FctBytes, FctValue, FctValueList } from '../../../../Fct/generics'; export declare const SimpleSwap: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"PARASWAP", "ACTION", "simpleSwap", string | undefined, { input: { to: FctAddress; methodParams: { simpleData_tuple: { fromToken: FctAddress; toToken: FctAddress; fromAmount: FctValue; toAmount: FctValue; expectedAmount: FctValue; callees: FctAddressList; exchangeData: FctBytes; startIndexes: FctValueList; values: FctValueList; beneficiary: FctAddress; partner: FctAddress; feePercent: FctValue; permit: FctBytes; deadline: FctValue; }; }; }; output: { receivedAmount: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };