import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateLobbyGlobals = { appId?: string | undefined; }; export type CreateLobbySecurity = { playerAuth: string; }; export type CreateLobbyRequest = { appId?: string | undefined; shortCode?: string | undefined; roomId?: string | undefined; createLobbyV3Params: components.CreateLobbyV3Params; }; /** @internal */ export type CreateLobbySecurity$Outbound = { playerAuth: string; }; /** @internal */ export declare const CreateLobbySecurity$outboundSchema: z.ZodType; export declare function createLobbySecurityToJSON(createLobbySecurity: CreateLobbySecurity): string; /** @internal */ export type CreateLobbyRequest$Outbound = { appId?: string | undefined; shortCode?: string | undefined; roomId?: string | undefined; CreateLobbyV3Params: components.CreateLobbyV3Params$Outbound; }; /** @internal */ export declare const CreateLobbyRequest$outboundSchema: z.ZodType; export declare function createLobbyRequestToJSON(createLobbyRequest: CreateLobbyRequest): string; //# sourceMappingURL=createlobby.d.ts.map