import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IVersion, IVersionInterface } from "../IVersion"; export declare class IVersion__factory { static readonly abi: readonly [{ readonly inputs: readonly []; readonly name: "version"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): IVersionInterface; static connect(address: string, signerOrProvider: Signer | Provider): IVersion; }