import type { TodoItem } from '@wrongstack/core/agent'; import type { Tool } from '@wrongstack/core/types'; import { type KanbanTask } from '@wrongstack/kanban'; export interface TodoInput { todos: TodoItem[]; } export interface TodoKanbanBinding { todoId: string; boardId: string; taskId: string; taskStatus: KanbanTask['status']; } export interface TodoOutput { count: number; in_progress: number; kanban_synced?: number | undefined; kanban_warnings?: string[] | undefined; kanban_bindings?: TodoKanbanBinding[] | undefined; } export declare const todoTool: Tool; //# sourceMappingURL=todo.d.ts.map