export declare type WebhookPayloadFormat = 'RAW' | 'PAGER_DUTY'; /** * Target object for Webhooks * * @remarks * Target object for Webhook * * @property {string} id - Id of the WebhookTarget used later to be added into a TargetGroup * @property {string | null} name - Friendly name (must be unique) * @property {string} url - The url of the Webhook * @property {WebhookPayloadFormat} format - The format of payloads * @property {ReadonlyArray>} headers - The headers associated with this webhook * */ export declare type WebhookTarget = Readonly<{ id: string; name: string | null; url: string; format: WebhookPayloadFormat; headers: ReadonlyArray>; }>; //# sourceMappingURL=WebhookTarget.d.ts.map