import * as z from "zod/v3"; export type GetLobbyInfoGlobals = { appId?: string | undefined; }; export type GetLobbyInfoRequest = { appId?: string | undefined; roomId: string; }; /** @internal */ export type GetLobbyInfoRequest$Outbound = { appId?: string | undefined; roomId: string; }; /** @internal */ export declare const GetLobbyInfoRequest$outboundSchema: z.ZodType; export declare function getLobbyInfoRequestToJSON(getLobbyInfoRequest: GetLobbyInfoRequest): string; //# sourceMappingURL=getlobbyinfo.d.ts.map