import { flags } from '@heroku-cli/command'; import BaseCommand from '../../../base'; export default class Deliveries extends BaseCommand { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; status: flags.IOptionFlag; pipeline: flags.IOptionFlag; }; run(): Promise; }