import { BaseCommand } from '../../base-command.js'; import type { ValidationResult } from '../../lib/investigation-graph/index.js'; export default class InvestigationValidate extends BaseCommand { static args: { 'taskflow-id': import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise; }