import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateLobbyDeprecatedGlobals = { appId?: string | undefined; }; export type CreateLobbyDeprecatedSecurity = { playerAuth: string; }; export type CreateLobbyDeprecatedRequest = { appId?: string | undefined; roomId?: string | undefined; createLobbyParams: components.CreateLobbyParams; }; /** @internal */ export type CreateLobbyDeprecatedSecurity$Outbound = { playerAuth: string; }; /** @internal */ export declare const CreateLobbyDeprecatedSecurity$outboundSchema: z.ZodType; export declare function createLobbyDeprecatedSecurityToJSON(createLobbyDeprecatedSecurity: CreateLobbyDeprecatedSecurity): string; /** @internal */ export type CreateLobbyDeprecatedRequest$Outbound = { appId?: string | undefined; roomId?: string | undefined; CreateLobbyParams: components.CreateLobbyParams$Outbound; }; /** @internal */ export declare const CreateLobbyDeprecatedRequest$outboundSchema: z.ZodType; export declare function createLobbyDeprecatedRequestToJSON(createLobbyDeprecatedRequest: CreateLobbyDeprecatedRequest): string; //# sourceMappingURL=createlobbydeprecated.d.ts.map