/** Known frameworks and their visual form modifiers */ export type FormModifier = 'interconnected' | 'flowing' | 'structured' | 'minimal' | 'systematic' | 'reactive' | 'spatial' | 'analytical' | 'native' | 'foundational'; export interface FrameworkProfile { /** Detected frameworks */ frameworks: string[]; /** Primary form modifier */ formModifier: FormModifier; /** All detected form modifiers */ allModifiers: FormModifier[]; } /** * Detect frameworks from dependency files in the project. */ export declare function analyzeFrameworks(cwd: string): FrameworkProfile;