/** * File reading tool */ import { BaseTool } from './base'; import type { ToolResult } from '../types'; export interface ReadParams { filePath: string; encoding?: string; offset?: number; limit?: number; } /** * Tool for reading files from the filesystem */ export declare class ReadTool extends BaseTool { constructor(); validateParams(params: Record): boolean; execute(params: Record): Promise; getParameterSchema(): Record; getUsageExamples(): string[]; } //# sourceMappingURL=read.d.ts.map