import BaseCommand from '../base-command'; import { flags } from '@oclif/command'; export default class New extends BaseCommand { static description: string; static aliases: string[]; static flags: flags.Input; static args: { name: string; required: boolean; description: string; }[]; static examples: string[]; run(): Promise; }