import { CreateConfigCommand } from './create-config-command.js'; /** * A base class for Swell CLI Create [content|models] command input. * * This class extends the `CreateConfigCommand` class and adds: * * - promptCollection: Get collection name and description */ export declare abstract class CreateCollectionCommand extends CreateConfigCommand { static args: { collection: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static baseFlags: { 'app-path': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; }; static flags: { description: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; label: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; overwrite: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; promptCollection(): Promise<{ collection: string; description: string; label: string; }>; }