import { HardhatUserConfig } from "hardhat/config"; import "@openzeppelin/hardhat-upgrades"; import "@nomiclabs/hardhat-ethers"; import "@nomiclabs/hardhat-etherscan"; import "@nomicfoundation/hardhat-chai-matchers"; import "@typechain/hardhat"; import "hardhat-gas-reporter"; import "hardhat-contract-sizer"; import "solidity-coverage"; import { TablelandNetworkConfig } from "./network"; declare const config: HardhatUserConfig; declare module "hardhat/types/config" { interface HardhatUserConfig { baseURIs: TablelandNetworkConfig; proxies: TablelandNetworkConfig; } } declare module "hardhat/types/runtime" { interface HardhatRuntimeEnvironment { baseURI: string; proxy: string; } } export default config; //# sourceMappingURL=hardhat.config.d.ts.map