import { BaseCommand } from '../../base-command.js'; export default class SignalSetGroundTruth extends BaseCommand { static args: { signalId: import("@oclif/core/interfaces").Arg>; investigationId: import("@oclif/core/interfaces").Arg>; expectedOutcome: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise>; }