import { BaseCommand } from '../../base-command.js'; export default class InvestigationRunsLabelsDelete extends BaseCommand { static args: { id: import("@oclif/core/interfaces").Arg>; runId: import("@oclif/core/interfaces").Arg>; labelId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise<{ deleted: boolean; id: string; labelId: string; runId: string; }>; }