import { FctAddress, FctAddressList, FctDecimals, FctTimestamp, FctValue } 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<"SUSHISWAP", "ACTION", "simpleSwap", "swap", { input: { to: FctAddress; methodParams: { addressIn: FctAddress; amountIn: FctValue; decimalsIn: FctDecimals; addressOut: FctAddress; amountOut: FctValue; decimalsOut: FctDecimals; path: FctAddressList; to: FctAddress; deadline: FctTimestamp; }; }; output: { amountIn: FctValue; amountOut: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };