/** * Generate a decomposition plan from a specification using an LLM. */ import type { PlanItem } from '../../../../types/workflow-set'; export interface PlanResult { plan_name: string; plan_description: string; workflows: PlanItem[]; } export declare function generatePlan(specification: string): Promise;