import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NodeInfoV0 } from "./nodeinfov0.js"; import { NodeInfoV1 } from "./nodeinfov1.js"; import { NodeInfoV2 } from "./nodeinfov2.js"; export type Iota = { v0Info?: NodeInfoV0 | undefined; v1Info?: NodeInfoV1 | undefined; v2Info?: NodeInfoV2 | undefined; }; /** @internal */ export declare const Iota$inboundSchema: z.ZodType; export declare function iotaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=iota.d.ts.map