import type { TaskState } from '../task/task-state.js'; /** * Compact all-tasks view. * * Resource URI: `task:///all` */ export declare function renderScoreboard(tasks: TaskState[]): string; /** * Full task detail view as markdown. * * Resource URI: `task:///{id}` */ export declare function renderTaskDetail(task: TaskState): string; /** * Last 20 lines from task.output. * * Resource URI: `task:///{id}/log` */ export declare function renderSummaryLog(task: TaskState): string; /** * All lines from task.output (no truncation). * * Resource URI: `task:///{id}/log.verbose` */ export declare function renderVerboseLog(task: TaskState): string;