import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IERC165Upgradeable, IERC165UpgradeableInterface } from "../IERC165Upgradeable";
export declare class IERC165Upgradeable__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "supportsInterface";
        readonly inputs: readonly [{
            readonly name: "interfaceId";
            readonly type: "bytes4";
            readonly internalType: "bytes4";
        }];
        readonly outputs: readonly [{
            readonly name: "";
            readonly type: "bool";
            readonly internalType: "bool";
        }];
        readonly stateMutability: "view";
    }];
    static createInterface(): IERC165UpgradeableInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): IERC165Upgradeable;
}
