import type { SignerWithAddress } from "@nomicfoundation/hardhat-ethers/dist/src/signer-with-address"; import type { Greeter } from "../types/Greeter"; type Fixture = () => Promise; declare module "mocha" { export interface Context { greeter: Greeter; loadFixture: (fixture: Fixture) => Promise; signers: Signers; } } export interface Signers { admin: SignerWithAddress; }