import { InspectResourceCommand, InspectResourceCommandParsed } from '../../inspect-resource-command.js'; import { InspectScope } from '../../lib/apps/inspect-scope.js'; import { GroupInfo } from '../../lib/inspect/table.js'; interface ContentView { id: string; name: string; app_id?: string; collection?: string; fields?: any[]; source_id?: string; source_type?: string; views?: any[]; } export default class Content 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; run(): Promise; protected keyFor(record: ContentView, appSlugById: Record): string; protected groupForRecord(record: ContentView, appSlugById: Record): GroupInfo; protected showDetail(identifier: string, scope: InspectScope, flags: InspectResourceCommandParsed['flags']): Promise; } export {};