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