import { type FlowGenerationOptions } from './flow-generator.js'; import type { FlowFileInput } from './types.js'; export interface LLMFlowGenerationOptions extends FlowGenerationOptions { model?: string; contextText?: string; timeoutMs?: number; llmMode?: 'hybrid' | 'full'; } export declare function generateFlowTemplateWithLLM(options: LLMFlowGenerationOptions): Promise;