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