import type { FlowFileInput } from './types.js'; export interface FlowPromptBlocks { globalPrompt: string; startPrompt: string; mainAgendaPrompt: string; summaryPrompt: string; endPrompt: string; } export interface FlowGenerationOptions { useCase: string; flowId?: string; direction?: 'inbound' | 'outbound'; agentName?: string; promptBlocks?: Partial; } export declare function generateFlowTemplate(options: FlowGenerationOptions): FlowFileInput;