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