import type { ClarificationQuestion } from '../agent/clarify'; import type { Plan } from '../agent/schemas'; import type { Task } from '../task/types'; import { renderNextSteps } from './output'; export type PlanSummary = { summary: string; steps: number; files: string[]; risks: string[]; complexity: 'Low' | 'Medium' | 'High'; }; export declare function summarizePlan(plan: Plan): PlanSummary; export declare function renderTaskHeader(task: Task): string; export declare function renderPlanSummary(planSummary: PlanSummary, options?: { title?: string; }): string; export declare function renderClarifications(questions: ClarificationQuestion[], options?: { title?: string; intro?: string; }): string; export declare function renderReadySection(options: { title: string; runId: string; worktreePath?: string; }): string; export { renderNextSteps };