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