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