import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type NodeInfoV1 = { confirmedMilestoneIndex?: number | undefined; features?: Array | null | undefined; isHealthy?: boolean | undefined; latestMilestoneIndex?: number | undefined; name?: string | undefined; networkId?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const NodeInfoV1$inboundSchema: z.ZodType; export declare function nodeInfoV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nodeinfov1.d.ts.map