import "@nomiclabs/hardhat-ethers/internal/type-extensions"; import "@nomiclabs/hardhat-ethers/types"; import "hardhat-deploy/dist/src/type-extensions"; import "hardhat/types/config"; import { HardhatRuntimeEnvironment } from "hardhat/types"; import type ethers from "ethers"; declare module "hardhat/types/config" { interface HardhatConfig { } } declare module "@nomiclabs/hardhat-ethers/types" { interface HardhatEthersHelpers { getWallet: (address: string) => Promise; getWallets: () => Promise; } } declare global { var hre: HardhatRuntimeEnvironment; } //# sourceMappingURL=type-extensions.d.ts.map