import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { ERC1271, ERC1271Interface } from "../ERC1271"; export declare class ERC1271__factory { static readonly abi: readonly [{ readonly inputs: readonly []; readonly name: "ERC1271_INTERFACE_ID"; readonly outputs: readonly [{ readonly internalType: "bytes4"; readonly name: ""; readonly type: "bytes4"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "ERC1271_RETURN_INVALID_SIGNATURE"; readonly outputs: readonly [{ readonly internalType: "bytes4"; readonly name: ""; readonly type: "bytes4"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly []; readonly name: "ERC1271_RETURN_VALID_SIGNATURE"; readonly outputs: readonly [{ readonly internalType: "bytes4"; readonly name: ""; readonly type: "bytes4"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "bytes32"; readonly name: "_hash"; readonly type: "bytes32"; }, { readonly internalType: "bytes"; readonly name: "_signature"; readonly type: "bytes"; }]; readonly name: "isValidSignature"; readonly outputs: readonly [{ readonly internalType: "bytes4"; readonly name: ""; readonly type: "bytes4"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): ERC1271Interface; static connect(address: string, signerOrProvider: Signer | Provider): ERC1271; }