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