/** * Intent Classifier — Categorizes natural language design intents. * * Extracted from orchestrator.ts for independent testability and reuse. */ export type IntentCategory = "token-update" | "component-create" | "component-modify" | "page-layout" | "dataviz-create" | "theme-change" | "spacing-system" | "typography-system" | "color-palette" | "figma-sync" | "code-generate" | "design-audit" | "design-system-init" | "responsive-layout" | "accessibility-check" | "design-extract" | "general"; export declare const INTENT_PATTERNS: [RegExp, IntentCategory][]; export declare function classifyIntent(intent: string): IntentCategory;