import * as z from "zod/v3"; import * as components from "../components/index.js"; export type SetLobbyStateGlobals = { appId?: string | undefined; }; export type SetLobbyStateRequest = { appId?: string | undefined; roomId: string; setLobbyStateParams: components.SetLobbyStateParams; }; /** @internal */ export type SetLobbyStateRequest$Outbound = { appId?: string | undefined; roomId: string; SetLobbyStateParams: components.SetLobbyStateParams$Outbound; }; /** @internal */ export declare const SetLobbyStateRequest$outboundSchema: z.ZodType; export declare function setLobbyStateRequestToJSON(setLobbyStateRequest: SetLobbyStateRequest): string; //# sourceMappingURL=setlobbystate.d.ts.map