import { Command, flags } from '@heroku-cli/command'; export default class Create extends Command { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; stage: flags.IOptionFlag; team: flags.IOptionFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }