import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateLocalLobbyGlobals = { appId?: string | undefined; }; export type CreateLocalLobbySecurity = { playerAuth: string; }; export type CreateLocalLobbyRequestBody = { /** * User input to initialize the game state. Object must be smaller than 64KB. */ initialConfig?: any | undefined; region: components.Region; }; export type CreateLocalLobbyRequest = { appId?: string | undefined; roomId?: string | undefined; requestBody: CreateLocalLobbyRequestBody; }; /** @internal */ export type CreateLocalLobbySecurity$Outbound = { playerAuth: string; }; /** @internal */ export declare const CreateLocalLobbySecurity$outboundSchema: z.ZodType; export declare function createLocalLobbySecurityToJSON(createLocalLobbySecurity: CreateLocalLobbySecurity): string; /** @internal */ export type CreateLocalLobbyRequestBody$Outbound = { initialConfig?: any | undefined; region: string; }; /** @internal */ export declare const CreateLocalLobbyRequestBody$outboundSchema: z.ZodType; export declare function createLocalLobbyRequestBodyToJSON(createLocalLobbyRequestBody: CreateLocalLobbyRequestBody): string; /** @internal */ export type CreateLocalLobbyRequest$Outbound = { appId?: string | undefined; roomId?: string | undefined; RequestBody: CreateLocalLobbyRequestBody$Outbound; }; /** @internal */ export declare const CreateLocalLobbyRequest$outboundSchema: z.ZodType; export declare function createLocalLobbyRequestToJSON(createLocalLobbyRequest: CreateLocalLobbyRequest): string; //# sourceMappingURL=createlocallobby.d.ts.map