import { flags } from '@oclif/command'; import Command from '../base'; /** * The base class of Webhooks commands */ export default class Webhooks extends Command { /** * The command descrition * @var string */ static description: string; /** * The command usage * @var string */ static usage: string; /** * The command flags * @var Object */ static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; run(): Promise; }