import type { ActiveRun } from "./types.ts"; export interface PlanStep { id: string; text: string; } export declare function parsePlanSteps(plan: string): PlanStep[]; export declare function planStepsBlockReason(plan: string): string | undefined; export declare function executionStepsBlockReason(cwd: string, run: ActiveRun, plan: string, execution: string): string | undefined;