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