import { FctAddress, FctInteger128, FctValue } from '../../../../Fct/generics/FctParams'; export declare const RemoveLiquidityOneCoin: { new (args: { chainId: import("../../../../Fct/generics/FctParams").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<"CURVE", "ACTION", "remove_liquidity_one_coin", "removeLiquidityOneCoin", { input: { to: FctAddress; methodParams: { amount: FctValue; indexOfCoin: FctInteger128; minAmount: FctValue; }; }; output: { amountReceived: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };