import type { WorkspaceScan, StructuralAnalysis } from './types.js'; export type { StructuralFinding, StructuralAnalysis } from './types.js'; /** * Analyze the structural architecture of a monorepo for design system patterns. * * Checks: * 1. Whether design system layers exist (tokens → config → ui) * 2. Whether dependency flow is unidirectional * 3. Whether app tailwind configs use shared presets * 4. Whether tailwind configs contain hardcoded color values * * This is a deterministic structural analysis — no regex on code content, * just package.json parsing and config file inspection. */ export declare function analyzeStructure(repoPath: string, workspaces: WorkspaceScan[]): StructuralAnalysis; //# sourceMappingURL=structure-analyzer.d.ts.map