import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { HubControllable, HubControllableInterface } from "../../../../contracts/common/access/HubControllable";
export declare class HubControllable__factory {
    static readonly abi: ({
        inputs: never[];
        name: string;
        type: string;
        outputs?: undefined;
        stateMutability?: undefined;
    } | {
        inputs: never[];
        name: string;
        outputs: {
            internalType: string;
            name: string;
            type: string;
        }[];
        stateMutability: string;
        type: string;
    })[];
    static createInterface(): HubControllableInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): HubControllable;
}
