import type * as ElevenLabs from "../index";
export interface ConvAiWebhooks {
    postCallWebhookId?: string;
    /** List of event types to send via webhook. Options: transcript, audio, call_initiation_failure. */
    events?: ElevenLabs.WebhookEventType[];
    /** DEPRECATED: Use 'events' field instead. Whether to send audio data with post-call webhooks for ConvAI conversations */
    sendAudio?: boolean;
}
