import type { CatalogBuildCoverage, ParseError } from '../../types.js'; /** Privacy-safe exact identity of an already-normalized project-relative file set. */ export declare function graphInputFilesIdentity(files: readonly string[]): string; /** * Build bounded coverage metadata without retaining parse messages or file * paths. Dropped parse files are named in the local run log (fail-loud) but * never enter the returned, persistable payload. */ export declare function catalogBuildCoverage(input: { readonly projectRoot: string; readonly files: readonly string[]; readonly parseErrors: readonly ParseError[]; readonly status?: CatalogBuildCoverage['status']; }): CatalogBuildCoverage; //# sourceMappingURL=catalog-build-coverage.d.ts.map