import type { GitHubClient, GitHubIssue, GitHubMilestone } from '../github.js'; export interface GitHubBacklogAnalysis { issues: GitHubIssue[]; issuesByLabel: Record; issuesByMilestone: Record; highPriority: GitHubIssue[]; milestones: GitHubMilestone[]; } /** * Analyze a GitHub repo's backlog: open issues grouped by label/milestone, * high-priority detection, and milestone listing. */ export declare function analyzeGitHubBacklog(owner: string, repo: string, client: GitHubClient): Promise; //# sourceMappingURL=github-backlog.d.ts.map