/** * Prompts and instructions for task planning workflow */ export interface TaskPlanningPrompts { planningAgent: { instructions: (context: { storedQAPairs: any[]; }) => string; refinementPrompt: (context: { action: string; workflowName?: string; description?: string; requirements?: string; discoveredWorkflows: any[]; projectStructure: any; research: any; storedQAPairs: any[]; hasTaskFeedback: boolean; userAnswers?: any; }) => string; initialPrompt: (context: { action: string; workflowName?: string; description?: string; requirements?: string; discoveredWorkflows: any[]; projectStructure: any; research: any; }) => string; }; taskApproval: { message: (questionsCount: number) => string; approvalMessage: (tasksCount: number) => string; }; } export declare const taskPlanningPrompts: TaskPlanningPrompts; //# sourceMappingURL=prompts.d.ts.map