import type * as Pinnacle from "../index.mjs"; export interface DetachWebhookResult { /** The webhook that was detached from the senders. */ webhookId: string; /** Senders that were successfully detached (phone numbers in E.164 format or RCS agent IDs). */ senders: string[]; /** Senders that could not be detached, with error details. */ failed: Pinnacle.FailedSender[]; }