import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * The allocation status of a room. * * @remarks * * `scheduling`: a process is not allocated yet and the room is waiting to be scheduled * * `active`: ready to accept connections * * `destroyed`: all associated metadata is deleted */ export declare const RoomStatus: { readonly Scheduling: "scheduling"; readonly Active: "active"; readonly Destroyed: "destroyed"; }; /** * The allocation status of a room. * * @remarks * * `scheduling`: a process is not allocated yet and the room is waiting to be scheduled * * `active`: ready to accept connections * * `destroyed`: all associated metadata is deleted */ export type RoomStatus = OpenEnum; /** @internal */ export declare const RoomStatus$inboundSchema: z.ZodType; //# sourceMappingURL=roomstatus.d.ts.map