import { type Component } from "@apholdings/jensen-tui"; /** * Todo item as emitted in the todo_update event. */ export interface TodoUpdateItem { content: string; activeForm: string; status: string; } /** * Component that renders the todo list as a compact status bar. * Shows a summary line and optional expandable task details. */ export declare class TodoListComponent implements Component { private todos; update(todos: TodoUpdateItem[]): void; render(width: number): string[]; invalidate(): void; } export default TodoListComponent; //# sourceMappingURL=todo-list.d.ts.map