import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * Types of lobbies a player can create. * * @remarks * * `private`: the player who created the room must share the roomId with their friends * * `public`: visible in the public lobby list, anyone can join * * `local`: for testing with a server running locally */ export declare const LobbyVisibility: { readonly Private: "private"; readonly Public: "public"; readonly Local: "local"; }; /** * Types of lobbies a player can create. * * @remarks * * `private`: the player who created the room must share the roomId with their friends * * `public`: visible in the public lobby list, anyone can join * * `local`: for testing with a server running locally */ export type LobbyVisibility = OpenEnum; /** @internal */ export declare const LobbyVisibility$inboundSchema: z.ZodType; /** @internal */ export declare const LobbyVisibility$outboundSchema: z.ZodType; //# sourceMappingURL=lobbyvisibility.d.ts.map