/** * Whether a directory name is tool output or a vendored dependency, and so is * never authored project content. * * Exported for the walkers that collect more than `.sysml` — packaging sweeps a * project's manifests and config too — so that one list governs what "not * project content" means instead of each collector keeping its own. */ export declare function isIgnoredDirectory(name: string): boolean; /** Every `.sysml` file under `dir`, skipping output and scratch directories. */ export declare function findSysmlFiles(dir: string): string[]; //# sourceMappingURL=sysml-files.d.ts.map