import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Status: { readonly Starting: "starting"; }; export type Status = OpenEnum; export type StartingConnectionInfo = { status: Status; /** * Unique identifier to a game session or match. Use the default system generated ID or overwrite it with your own. * * @remarks * Note: error will be returned if `roomId` is not globally unique. */ roomId: string; }; /** @internal */ export declare const Status$inboundSchema: z.ZodType; /** @internal */ export declare const StartingConnectionInfo$inboundSchema: z.ZodType; export declare function startingConnectionInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=startingconnectioninfo.d.ts.map