import { ethers } from 'ethers'; import { FctAddress, FctTimestamp, 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?: ethers.providers.JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"UNISWAP", "ACTION", "addLiquidity" | "addLiquidityETH", "simpleAddLiquidity", { input: { to: FctAddress; methodParams: { currencyA: FctAddress; currencyB: FctAddress; amountADesired: FctValue; amountBDesired: FctValue; to: FctAddress; deadline: FctTimestamp; }; }; output: { amountA: FctValue; amountB: FctValue; liquidity: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };