/** * FlowEnhancer - LLM metadata enhancement for flows. * Enriches flow suggestions with better names and descriptions using LLM. */ import type { Command } from '@oclif/core'; import type { InteractionWithPaths } from '../../../db/schema.js'; import type { FlowSuggestion, LlmOptions } from './types.js'; export declare class FlowEnhancer { private readonly command; private readonly isJson; constructor(command: Command, isJson: boolean); /** * Enhance flows with LLM-generated metadata. */ enhanceFlowsWithLLM(flows: FlowSuggestion[], interactions: InteractionWithPaths[], model: string, llmOptions: LlmOptions): Promise; private buildEnhancementSystemPrompt; private buildEnhancementUserPrompt; private stakeholderToActor; private parseEnhancedFlowsCSV; } //# sourceMappingURL=flow-enhancer.d.ts.map