import { FctAddress, FctTupleArray } from '../../../Fct/generics'; export declare const GetPool: { new (args: { chainId: import("../../../Fct/generics").ChainId; initParams?: Partial<{ poolAddress: string | import("../corelibTypes").Variable | undefined; token1: string | import("../corelibTypes").Variable | undefined; token2: string | import("../corelibTypes").Variable | undefined; 'pool_tuple[]': import("../corelibTypes").Variable | import("../../../Fct/generics").TupleArrayParamType; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../Fct/createPlugin").NewPluginType<"FUNCTIONS", "GETTER", "getPool", "getPool", { input: { poolAddress: FctAddress; token1: FctAddress; token2: FctAddress; 'pool_tuple[]': FctTupleArray; methodParams: {}; }; output: {}; }, Partial<{ poolAddress: string | import("../corelibTypes").Variable | undefined; token1: string | import("../corelibTypes").Variable | undefined; token2: string | import("../corelibTypes").Variable | undefined; 'pool_tuple[]': import("../corelibTypes").Variable | import("../../../Fct/generics").TupleArrayParamType; methodParams: unknown; }>>; };