import { InspectResourceCommand, InspectResourceCommandParsed } from '../../inspect-resource-command.js'; import { InspectScope } from '../../lib/apps/inspect-scope.js'; import { WorkflowManifestRecord } from '../../lib/workflows/operations.js'; export default class Workflows extends InspectResourceCommand { static summary: string; static description: string; static args: { identifier: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { 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 appSlugById; private skippedApps; private detailRef?; run(): Promise; protected keyFor(record: WorkflowManifestRecord, appSlugById: Record): string; protected metaFor(record: WorkflowManifestRecord): string | undefined; protected getListResults(scope: InspectScope, _flags: InspectResourceCommandParsed['flags']): Promise; protected getAppSlugById(scope: InspectScope): Promise>; protected afterList(): void; protected showDetail(identifier: string, _scope: InspectScope, flags: InspectResourceCommandParsed['flags']): Promise; protected hints(): string[]; private getWorkflowListForApp; }