import type * as ElevenLabs from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { DubbingAudio } from "../../../types/DubbingAudio"; import { DubbingAudioOutputError } from "../../../types/DubbingAudioOutputError"; import { DubbingAuthError } from "../../../types/DubbingAuthError"; import { DubbingCommittedTranscript } from "../../../types/DubbingCommittedTranscript"; import { DubbingError } from "../../../types/DubbingError"; import { DubbingInputError } from "../../../types/DubbingInputError"; import { DubbingInvalidRequestError } from "../../../types/DubbingInvalidRequestError"; import { DubbingPartialTranscript } from "../../../types/DubbingPartialTranscript"; import { DubbingQueueOverflowError } from "../../../types/DubbingQueueOverflowError"; import { DubbingRateLimitedError } from "../../../types/DubbingRateLimitedError"; import { DubbingSessionStarted } from "../../../types/DubbingSessionStarted"; import { DubbingStatus } from "../../../types/DubbingStatus"; import { DubbingTranscriberError } from "../../../types/DubbingTranscriberError"; import { DubbingTranslation } from "../../../types/DubbingTranslation"; import { DubbingTranslationError } from "../../../types/DubbingTranslationError"; export declare const ReceiveDubbingStreamMessage: core.serialization.Schema; export declare namespace ReceiveDubbingStreamMessage { type Raw = DubbingSessionStarted.Raw | DubbingStatus.Raw | DubbingPartialTranscript.Raw | DubbingCommittedTranscript.Raw | DubbingTranslation.Raw | DubbingAudio.Raw | DubbingError.Raw | DubbingAuthError.Raw | DubbingRateLimitedError.Raw | DubbingQueueOverflowError.Raw | DubbingInvalidRequestError.Raw | DubbingInputError.Raw | DubbingTranscriberError.Raw | DubbingTranslationError.Raw | DubbingAudioOutputError.Raw; }