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