import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IERC1271Wallet, IERC1271WalletInterface } from "../../../src/interfaces/IERC1271Wallet"; export declare class IERC1271Wallet__factory { static readonly abi: readonly [{ 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: "magicValue"; readonly type: "bytes4"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): IERC1271WalletInterface; static connect(address: string, signerOrProvider: Signer | Provider): IERC1271Wallet; }