import type * as ElevenLabs from "../index";
/**
 * Payload sent when the transcription session is successfully started.
 */
export interface SessionStartedPayload {
    /** The message type identifier. */
    messageType: "session_started";
    /** Unique identifier for the session. */
    sessionId: string;
    /** Configuration for the transcription session. */
    config: ElevenLabs.SessionStartedPayloadConfig;
}
