import { InspectResourceCommand } from '../../inspect-resource-command.js'; interface WebhookRecord { id?: string; alias?: string | null; enabled?: boolean; auto_disabled?: boolean; events?: string[]; attempts_failed?: number; date_final_attempt?: string; app_id?: string; } export default class Webhooks extends InspectResourceCommand { static summary: string; static description: string; static args: { identifier: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { app: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; live: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; json: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static examples: string[]; protected resourceLabel: string; protected resourceLabelSingular: string; protected adminPath: string; protected commandName: string; protected nameField: string; run(): Promise; protected metaFor(r: WebhookRecord): string | undefined; protected hints(record: WebhookRecord): string[]; } export {};