/** The status of the webhook endpoint. */ export declare const WebhookEndpointStatus: { readonly Enabled: "enabled"; readonly Disabled: "disabled"; }; export type WebhookEndpointStatus = (typeof WebhookEndpointStatus)[keyof typeof WebhookEndpointStatus] | string;