import { flags } from '@heroku-cli/command'; import BaseCommand from '../../base'; export default class WebhooksUpdate extends BaseCommand { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; pipeline: flags.IOptionFlag; include: flags.IOptionFlag; level: flags.IOptionFlag; secret: flags.IOptionFlag; authorization: flags.IOptionFlag; url: flags.IOptionFlag; }; static args: { name: string; required: boolean; }[]; run(): Promise; }