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