/// <reference types="react" />
import { Command } from '../cli';
import { Create } from './create';
export declare class CreateCmd implements Command {
    private create;
    name: string;
    description: string;
    shortDescription: string;
    alias: string;
    group: string;
    private: boolean;
    options: never[];
    constructor(create: Create);
    render([name]: [string]): Promise<JSX.Element>;
}
