import * as z from "zod/v3"; export type SetLobbyStateParams = { /** * JSON blob to store metadata for a room. Must be smaller than 1MB. */ state?: any | undefined; }; /** @internal */ export type SetLobbyStateParams$Outbound = { state?: any | undefined; }; /** @internal */ export declare const SetLobbyStateParams$outboundSchema: z.ZodType; export declare function setLobbyStateParamsToJSON(setLobbyStateParams: SetLobbyStateParams): string; //# sourceMappingURL=setlobbystateparams.d.ts.map