import { ethers } from 'ethers'; import { Artifact } from "./builds/index.js"; export declare const deployment: { tx: string; deployer: string; funding: bigint; }; export declare const address = "0xce0042B868300000d44A59004Da54A005ffdcf9f"; export declare const abi: { constant: boolean; inputs: { internalType: string; type: string; }[]; name: string; outputs: { internalType: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; }[]; export declare function mustExistEIP2470(signer: ethers.Signer): Promise; export declare function deployContract(signer: ethers.Signer, artifact: Artifact, ...args: any[]): Promise<[ethers.Contract, Promise]>;