import "hardhat/types/config"; import "hardhat/types/runtime"; import type { Finder } from "./extensions/Finder"; import type { FinderConfig, FinderUserConfig } from "./types"; declare module "hardhat/types/config" { interface HardhatUserConfig { finder?: FinderUserConfig; } interface HardhatConfig { finder: FinderConfig; } } declare module "hardhat/types/runtime" { interface HardhatRuntimeEnvironment { finder: Finder; } } //# sourceMappingURL=type-extensions.d.ts.map