import * as z from "zod/v3"; import { Region } from "./region.js"; export type CreateRoomParams = { /** * System generated id for a deployment. */ deploymentId?: string | undefined; /** * An optional list of client IP addresses to whitelist for DDoS protection. */ clientIPs?: Array | undefined; /** * Optional configuration parameters for the room. Can be any string including stringified JSON. It is accessible from the room via [`GetRoomInfo()`](https://hathora.dev/api#tag/RoomV2/operation/GetRoomInfo). */ roomConfig?: string | undefined; region: Region; }; /** @internal */ export type CreateRoomParams$Outbound = { deploymentId?: string | undefined; clientIPs?: Array | undefined; roomConfig?: string | undefined; region: string; }; /** @internal */ export declare const CreateRoomParams$outboundSchema: z.ZodType; export declare function createRoomParamsToJSON(createRoomParams: CreateRoomParams): string; //# sourceMappingURL=createroomparams.d.ts.map