import type { StructuredError } from "../errors/structured-errors.js"; export declare class IdTracker { private seen; private errors; /** * Register an ID at a given AST path. If duplicate, records an error. */ track(id: string, path: string): void; /** * Return all duplicate ID errors found. */ getErrors(): StructuredError[]; } //# sourceMappingURL=id-tracker.d.ts.map