import type { Config } from '../../types/index.js'; /** * Service for GitHub Copilot operations * Single Responsibility: Copilot-specific functionality */ export declare class CopilotService { constructor(_config?: Config); /** * Assign GitHub Copilot to an issue using GitHub GraphQL API * This uses the gh CLI to execute GraphQL queries, avoiding browser automation * which GitHub blocks with anti-bot detection. */ assignToIssue(issueNumber: number): Promise; /** * Check if Copilot is assigned to an issue */ checkAssignment(issueNumber: number): Promise; /** * Request Copilot review on a PR */ requestReview(prNumber: number): Promise; /** * Add a comment for Copilot to respond to */ addCopilotComment(issueNumber: number, message: string): Promise; } //# sourceMappingURL=CopilotService.d.ts.map