import type { ExtensionContext } from "@earendil-works/pi-coding-agent"; import type { TodoItem, TodoStatus } from "./todo-state.js"; export declare const TODO_STATUS_ICONS: Record, string>; export declare function renderTodoPreviewLine(item: Pick, theme: ExtensionContext["ui"]["theme"], options?: { moreCount?: number; }): string; export declare function renderTodoLine(item: TodoItem, theme: ExtensionContext["ui"]["theme"]): string; export declare function renderTodoLines(items: TodoItem[], theme: ExtensionContext["ui"]["theme"]): string; //# sourceMappingURL=todo-render.d.ts.map