/** * Natural Language Parser for SmartEmbed * Extracts board type, project type, and features from natural language descriptions */ export interface ProjectIntent { boardType?: string; projectType?: string; features: string[]; rawDescription: string; } export declare class NaturalLanguageParser { /** * Parse natural language description into structured project intent */ parse(description: string): ProjectIntent; /** * Get detailed board configuration based on board type */ getBoardConfig(boardType: string): any; } //# sourceMappingURL=nlp-parser.d.ts.map