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