import { SwellCommand } from '../../swell-command.js'; export default class Models extends SwellCommand { static summary: string; static description: string; static args: { 'collection-path': import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { live: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static examples: string[]; run(): Promise; protected catch(error: Error): Promise; private listModels; private showStandardModels; private showAppModels; private showModels; private getModelPath; private getAppSlugId; private showModelDetail; private resolveModelPath; private resolveAppModelPath; private throwModelNotFound; private showModel; }