import { FctAddress, FctInteger128, FctValue } from '../../../../Fct/generics/FctParams'; export declare const ExchangeOnPool: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; poolLPToken: string | import("../../corelibTypes").Variable | undefined; poolGaugeToken: string | import("../../corelibTypes").Variable | undefined; value: 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", "exchange", "exchangeOnPool", { input: { to: FctAddress; poolLPToken: FctAddress; poolGaugeToken: FctAddress; value: FctValue; methodParams: { index1: FctInteger128; index2: FctInteger128; amount: FctValue; amountMinReceived: FctValue; }; }; output: { amountReceived: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; poolLPToken: string | import("../../corelibTypes").Variable | undefined; poolGaugeToken: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };