import type { TaskStepStatus } from "./task-state.ts"; export type TaskCommand = { type: "list"; includeTerminal: boolean; } | { type: "add"; content: string; } | { type: "update"; selector: string; status: TaskStepStatus; evidence?: string; note?: string; } | { type: "clear"; } | { type: "compact"; } | { type: "retired_execution"; operation: "run" | "route" | "bg" | "team"; }; export type ParsedTaskCommand = { ok: true; command: TaskCommand; } | { ok: false; error: string; }; export declare function parseTaskCommand(text: string): ParsedTaskCommand; //# sourceMappingURL=task-command.d.ts.map