import { FctAddress } from '../../../../Fct/generics'; export declare const GetPair: { 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", "GETTER", "getPair", string | undefined, { input: { to: FctAddress; methodParams: { tokenA: FctAddress; tokenB: FctAddress; }; }; output: { address: FctAddress; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };