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