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