import { FctAddress, FctBytes, FctValue, FctValueList } from '../../../../Fct/generics'; export declare const SimpleSwap1Inch: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; currencyIn: string | import("../../corelibTypes").Variable | undefined; currencyOut: string | import("../../corelibTypes").Variable | undefined; amountIn: string | import("../../corelibTypes").Variable | undefined; amountOut: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"1INCH", "ACTION", "swap" | "uniswapV3Swap" | "unoswap", "simpleSwap1Inch", { input: { to: FctAddress; value: FctValue; currencyIn: FctAddress; currencyOut: FctAddress; amountIn: FctValue; amountOut: FctValue; methodParams: { srcToken: FctAddress; amount: FctValue; minReturn: FctValue; pools: FctValueList; executor: FctAddress; desc_tuple: { srcToken: FctAddress; dstToken: FctAddress; srcReceiver: FctAddress; dstReceiver: FctAddress; amount: FctValue; minReturnAmount: FctValue; flags: FctValue; }; permit: FctBytes; data: FctBytes; }; }; output: { returnAmount: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; currencyIn: string | import("../../corelibTypes").Variable | undefined; currencyOut: string | import("../../corelibTypes").Variable | undefined; amountIn: string | import("../../corelibTypes").Variable | undefined; amountOut: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };