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