import { FctAddress, FctBytes32, FctValue } from '../../../../Fct/generics'; export declare const SimpleAddLiquidity: { 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<"UNISWAP", "LIBRARY", "addLiquidity_noMinProtection", "addLiquidity_noMinProtection", { input: { to: FctAddress; methodParams: { method: FctBytes32; tokenA: FctAddress; tokenB: FctAddress; amountADesired: FctValue; amountBDesired: FctValue; }; }; output: { amountA: FctValue; amountB: FctValue; liquidity: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };