import type { ITool } from '../ITool.ts'; import type { ToolResult } from '../ITool.ts'; import type { ExecutionContext } from '../../core/ExecutionContext.ts'; export declare class ReadFileSkill implements ITool { name: string; description: string; inputSchema: { type: string; properties: { path: { type: string; description: string; }; }; required: string[]; }; execute(input: unknown, context: ExecutionContext): Promise; } //# sourceMappingURL=ReadFileSkill.d.ts.map