import { Command, flags } from '@oclif/command'; export default class Index extends Command { static description: string; static aliases: string[]; static args: { name: string; required: boolean; }[]; static examples: string[]; static flags: { procfile: flags.IOptionFlag; env: flags.IOptionFlag; port: flags.IOptionFlag; restart: import("@oclif/parser/lib/flags").IBooleanFlag; concurrency: flags.IOptionFlag; }; run(): Promise; }