import { FctAddress, FctTimestamp, FctValue } from '../../../../../Fct/generics'; export declare const RemoveLiquidityETH: { 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", "ACTION", "removeLiquidityETH", string | undefined, { input: { to: FctAddress; methodParams: { token: FctAddress; liquidity: FctValue; amountTokenMin: FctValue; amountETHMin: FctValue; to: FctAddress; deadline: FctTimestamp; }; }; output: { amountA: FctValue; amountB: FctValue; }; }, Partial<{ to: string | import("../../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };