import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Members = { clientUrls?: Array | null | undefined; id?: string | undefined; name?: string | undefined; peerUrls?: Array | null | undefined; }; /** @internal */ export declare const Members$inboundSchema: z.ZodType; export declare function membersFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=members.d.ts.map