import { FctAddress, FctAddressList, FctBoolean, FctBytes32, FctValue } from '../../../../Fct/generics'; export declare const SwapNoSlippageProtection: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; addressIn: string | import("../../corelibTypes").Variable | undefined; amountIn: string | import("../../corelibTypes").Variable | undefined; addressOut: string | import("../../corelibTypes").Variable | undefined; amountOut: string | import("../../corelibTypes").Variable | undefined; isExactIn: string | import("../../corelibTypes").Variable | undefined; snipperMode: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"UNISWAP", "LIBRARY", "swap_noSlippageProtection", string | undefined, { input: { to: FctAddress; addressIn: FctAddress; amountIn: FctValue; addressOut: FctAddress; amountOut: FctValue; isExactIn: FctBoolean; snipperMode: FctBoolean; methodParams: { amount: FctValue; method: FctBytes32; path: FctAddressList; }; }; output: { amountIn: FctValue; amountOut: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; addressIn: string | import("../../corelibTypes").Variable | undefined; amountIn: string | import("../../corelibTypes").Variable | undefined; addressOut: string | import("../../corelibTypes").Variable | undefined; amountOut: string | import("../../corelibTypes").Variable | undefined; isExactIn: string | import("../../corelibTypes").Variable | undefined; snipperMode: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };