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