import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreatePrivateLobbyDeprecatedGlobals = { appId?: string | undefined; }; export type CreatePrivateLobbyDeprecatedSecurity = { playerAuth: string; }; export type CreatePrivateLobbyDeprecatedRequest = { appId?: string | undefined; region?: components.Region | undefined; local?: boolean | undefined; }; /** @internal */ export type CreatePrivateLobbyDeprecatedSecurity$Outbound = { playerAuth: string; }; /** @internal */ export declare const CreatePrivateLobbyDeprecatedSecurity$outboundSchema: z.ZodType; export declare function createPrivateLobbyDeprecatedSecurityToJSON(createPrivateLobbyDeprecatedSecurity: CreatePrivateLobbyDeprecatedSecurity): string; /** @internal */ export type CreatePrivateLobbyDeprecatedRequest$Outbound = { appId?: string | undefined; region?: string | undefined; local: boolean; }; /** @internal */ export declare const CreatePrivateLobbyDeprecatedRequest$outboundSchema: z.ZodType; export declare function createPrivateLobbyDeprecatedRequestToJSON(createPrivateLobbyDeprecatedRequest: CreatePrivateLobbyDeprecatedRequest): string; //# sourceMappingURL=createprivatelobbydeprecated.d.ts.map