interface WebhookRegisterOptions { webhook_url: string; name: string; description: string; } interface WebhookRegisterResponse { webhook_secret: string; } interface WebhookVerifyOptions { headers: Record; payload: string; webhook_secret: string; } export { WebhookRegisterOptions, WebhookRegisterResponse, WebhookVerifyOptions };