import { Command } from '../lib'; /** * Create a new denali app * * @package commands */ export default class NewCommand extends Command { static commandName: string; static description: string; static longDescription: string; static params: string; static flags: { 'skip-deps': { description: string; defaultValue: boolean; type: any; }; 'skip-git': { description: string; defaultValue: boolean; type: any; }; 'use-npm': { description: string; defaultValue: boolean; type: any; }; }; static runsInApp: boolean; run(argv: any): Promise; }