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