/** * Issue analysis and auto-labeling module * * Analyzes existing Issues and automatically assigns appropriate labels */ export interface Issue { number: number; title: string; body: string | null; labels: string[]; } /** * Auto-label all open Issues in repository */ export declare function autoLabelIssues(owner: string, repo: string, token: string): Promise; //# sourceMappingURL=issues.d.ts.map