import type { ToolingManifest } from "../types/toolingManifest.js"; export declare const TOOLING_INPUTS: readonly ["audit-code.mjs", "wrapper/audit-code-wrapper-lib.mjs", "package.json", "dist", "schemas", "skills/audit-code"]; /** * Read `version` from the package.json under `packageRoot`, or `null` when the * file is absent, unreadable, malformed, or carries a non-string version — a * missing tooling version must never abort manifest construction. * * Exported and root-parameterized so its failure branch is reachable from a * test against a temp directory: the regression it guards (a parse failure that * reports to stderr and degrades to `null`) is only actually guarded by a test * that runs THIS function, not a copy of it. */ export declare function readPackageVersion(packageRoot: string): Promise; export declare function buildToolingManifest(): Promise; //# sourceMappingURL=toolingManifest.d.ts.map