import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { IBPool } from "./IBPool";
export declare class IBPoolFactory {
    static connect(address: string, signerOrProvider: Signer | Provider): IBPool;
}
