import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type NodeInfoV2 = { decimals?: number | undefined; features?: Array | null | undefined; isHealthy?: boolean | undefined; latestMilestone?: number | undefined; latestUncommittedMilestone?: number | undefined; name?: string | undefined; networkName?: string | undefined; protocolVersion?: number | undefined; subunit?: string | undefined; supportedProtocolVersions?: Array | null | undefined; tickerSymbol?: string | undefined; tokenName?: string | undefined; tokenSupply?: string | undefined; unit?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const NodeInfoV2$inboundSchema: z.ZodType; export declare function nodeInfoV2FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nodeinfov2.d.ts.map