import { type IIssue, type IIssueByPackage } from './types'; export declare const assignees: { 'gilbert-nicolet69519': string; 'leo-maradan65819': string; 'pierre-charmillot57359': string; 'ruslan-pohomenko54280': string; 'stephane-bryois40143': string; 'yuri-leontyev49277': string; }; export declare const assignIssue: (issue: IIssue, newAuthor: string, token: string) => Promise; /** * Fetches all SonarQube issues for the project. * @param token * @param project * @param branch * @returns */ export declare const fetchIssues: (token: string, project: string, branch?: string) => Promise;