import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateRoomGlobals = { appId?: string | undefined; }; export type CreateRoomRequest = { appId?: string | undefined; roomId?: string | undefined; createRoomParams: components.CreateRoomParams; }; /** @internal */ export type CreateRoomRequest$Outbound = { appId?: string | undefined; roomId?: string | undefined; CreateRoomParams: components.CreateRoomParams$Outbound; }; /** @internal */ export declare const CreateRoomRequest$outboundSchema: z.ZodType; export declare function createRoomRequestToJSON(createRoomRequest: CreateRoomRequest): string; //# sourceMappingURL=createroom.d.ts.map