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