import { ReturnCode } from '../../types/command'; import { CreateTemplate } from './createTemplate'; import { CommandBase } from '../../types'; export declare class CreateCommand extends CommandBase { constructor(args: string[]); get template(): CreateTemplate; get folderName(): string; execute(): Promise; }