import EasCommand from '../../commandUtils/EasCommand'; export default class WebhookDelete extends EasCommand { static description: string; static args: { ID: import("@oclif/core/lib/interfaces").Arg>; }; static flags: { 'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag; }; static contextDefinition: { loggedIn: import("../../commandUtils/context/LoggedInContextField").default; projectId: import("../../commandUtils/context/ProjectIdContextField").ProjectIdContextField; }; runAsync(): Promise; }