export interface NewsroomWebhook { id: string; name: string; url: string; events: NewsroomWebhook.Event[]; secret: string | null; is_active: boolean; } export declare namespace NewsroomWebhook { enum Event { STORY_CREATED = "story.created", STORY_UPDATED = "story.updated", STORY_DELETED = "story.deleted", CATEGORY_CREATED = "category.created", CATEGORY_UPDATED = "category.updated", CATEGORY_DELETED = "category.deleted" } }