import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ServerSync = { maxBandwidth?: number | undefined; permissions?: Array | null | undefined; welcomeText?: string | undefined; }; /** @internal */ export declare const ServerSync$inboundSchema: z.ZodType; export declare function serverSyncFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=serversync.d.ts.map