import 'hardhat/types/config'; import 'hardhat/types/runtime'; import { ContractDeployment } from './ContractDeployment'; declare module 'hardhat/types/config' { interface ProjectPathsUserConfig { deployment?: string; } interface ProjectPathsConfig { deployment: string; } } declare module 'hardhat/types/runtime' { interface HardhatRuntimeEnvironment { contractDeployment: ContractDeployment; } } //# sourceMappingURL=type-extensions.d.ts.map