import "hardhat/types/config"; import "hardhat/types/runtime"; import { NoirExtension } from "./Noir"; declare module "hardhat/types/config" { interface ProjectPathsUserConfig { noir?: string; } interface ProjectPathsConfig { noir: string; } interface HardhatUserConfig { noir: { version: string; /** * @deprecated no longer used */ flavor?: unknown; skipNargoWorkspaceCheck?: boolean; }; } interface HardhatConfig { noir: Omit, "flavor">; } } declare module "hardhat/types/runtime" { interface HardhatRuntimeEnvironment { noir: NoirExtension; } } //# sourceMappingURL=type-extensions.d.ts.map