import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response containing a LiveKit access token, server URL, and the generated room name. */ export type LivekitTokenResponse = { /** * JWT access token for authenticating with the LiveKit room */ token: string; /** * LiveKit server WebSocket URL to connect to (e.g., wss://apigw.mka1.com/api/v1/livekit) */ url: string; /** * Auto-generated UUID room name assigned to this session */ roomName: string; }; /** @internal */ export declare const LivekitTokenResponse$inboundSchema: z.ZodType; /** @internal */ export type LivekitTokenResponse$Outbound = { token: string; url: string; roomName: string; }; /** @internal */ export declare const LivekitTokenResponse$outboundSchema: z.ZodType; export declare function livekitTokenResponseToJSON(livekitTokenResponse: LivekitTokenResponse): string; export declare function livekitTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=livekittokenresponse.d.ts.map