import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LivekitTokenRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; livekitTokenRequest: components.LivekitTokenRequest; }; /** @internal */ export declare const LivekitTokenRequest$inboundSchema: z.ZodType; /** @internal */ export type LivekitTokenRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; LivekitTokenRequest: components.LivekitTokenRequest$Outbound; }; /** @internal */ export declare const LivekitTokenRequest$outboundSchema: z.ZodType; export declare function livekitTokenRequestToJSON(livekitTokenRequest: LivekitTokenRequest): string; export declare function livekitTokenRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=livekittoken.d.ts.map