/** * Payload for protocol-level errors sent by ElevenLabs before closing the connection. */ export interface ErrorPayload { /** The message type identifier. */ type: "error"; /** Human-readable description of the error. */ message: string; }