export interface WebhookNotificationSettings { state: WebhookNotificationSettingsStateEnum; } export declare const WebhookNotificationSettingsStateEnum: { readonly Enabled: "ENABLED"; readonly Disabled: "DISABLED"; }; export type WebhookNotificationSettingsStateEnum = (typeof WebhookNotificationSettingsStateEnum)[keyof typeof WebhookNotificationSettingsStateEnum];