/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import { BaseTool, type ToolResult } from './tools.js'; export type TodoReadParams = Record; export declare class TodoRead extends BaseTool { static readonly Name = "todo_read"; private reminderService; constructor(); getDescription(_params: TodoReadParams): string; execute(_params: TodoReadParams, _signal: AbortSignal, _updateOutput?: (output: string) => void): Promise; private calculateStatistics; private determineSuggestedAction; }