import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EventsCapabilities = { maxNotificationProducers?: number | undefined; maxPullPoints?: number | undefined; wsPausableSubscriptionManagerInterfaceSupport?: boolean | undefined; wsPullPointSupport?: boolean | undefined; wsSubscriptionPolicySupport?: boolean | undefined; }; /** @internal */ export declare const EventsCapabilities$inboundSchema: z.ZodType; export declare function eventsCapabilitiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventscapabilities.d.ts.map