import { Command, flags } from '@heroku-cli/command'; export default class Setup extends Command { static description: string; static examples: string[]; static flags: { team: flags.IOptionFlag; yes: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }