import { Command, flags } from '@heroku-cli/command'; export default class API extends Command { static description: string; static flags: { version: flags.IOptionFlag; 'accept-inclusion': flags.IOptionFlag; body: flags.IOptionFlag; }; static args: ({ name: string; description: string; required: boolean; } | { name: string; description: string; required?: undefined; })[]; static help: string; run(): Promise; }