/** * Project Info * * Per-project metadata pulled from nx's project graph (root + tags), used to * enrich architecture/dependencies.json with AI-oriented fields. */ export declare class ProjectInfo { readonly name: string; /** Project root, relative to the workspace root (e.g. packages/http/http-routing) */ readonly root: string; readonly tags: string[]; constructor(name: string, /** Project root, relative to the workspace root (e.g. packages/http/http-routing) */ root: string, tags: string[]); }