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