import { type Argv } from 'yargs'; export declare const command = "sonar-issues"; export declare const describe = "Will generate a report for SonarQube issues in the current project."; export declare const aliases: string[]; export interface ISonarOptions { branch?: string; key?: string; output?: string; project?: string[]; } /** * Handler for the sonar-issues command * @param argv The command line arguments * @returns */ export declare const handler: (argv: ISonarOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ branch: { alias: string; describe: string; type: "string"; }; key: { alias: string; describe: string; type: "string"; }; output: { alias: string; describe: string; type: "string"; }; project: { alias: string; array: true; choices: string[]; describe: string; type: "string"; }; }>>;