import { flags } from '@oclif/command'; import Webhooks from '../webhooks'; /** * WebhookList class extending superClass Webhooks */ export default class WebhooksList extends Webhooks { /** * @params String * Description of the command webhooks:list */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { limit: import("@oclif/parser/lib/flags").IOptionFlag; page: import("@oclif/parser/lib/flags").IOptionFlag; filters: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param Sting[] * Some example of use of the webhook:list command */ static examples: string[]; run(): Promise; }