import { InspectResourceCommand } from '../../inspect-resource-command.js'; export default class WorkflowRuns extends InspectResourceCommand { static summary: string; static description: string; static args: { identifier: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { limit: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; status: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; workflow: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; app: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; live: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; json: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static examples: string[]; protected resourceLabel: string; protected resourceLabelSingular: string; protected adminPath: string; protected commandName: string; private detailContext?; run(): Promise; protected hints(): string[]; private showRecentRunList; private showRunDetail; private getRunDetail; private resolveWorkflowRunScope; private getRunDetailForApp; private getRecentRunsForScopedApp; private getRecentRunsForInstalledApps; private resolveRunListTargets; private getRunListForApp; }