import { type IIssue, type IIssueByPackage } from './types'; /** * 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;