import type * as ElevenLabs from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ClosePayload } from "../../../types/ClosePayload"; import { ErrorPayload } from "../../../types/ErrorPayload"; import { InitPayload } from "../../../types/InitPayload"; import { PingPayload } from "../../../types/PingPayload"; import { UserTranscriptPayload } from "../../../types/UserTranscriptPayload"; export declare const ReceiveUpstreamMessage: core.serialization.Schema; export declare namespace ReceiveUpstreamMessage { type Raw = InitPayload.Raw | UserTranscriptPayload.Raw | PingPayload.Raw | ClosePayload.Raw | ErrorPayload.Raw; }