import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type LatestIndexedBlock = { blockchain: Blockchain; blockNumber: number; }; /** @internal */ export declare const LatestIndexedBlock$inboundSchema: z.ZodType; /** @internal */ export type LatestIndexedBlock$Outbound = { blockchain: string; blockNumber: number; }; /** @internal */ export declare const LatestIndexedBlock$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LatestIndexedBlock$ { /** @deprecated use `LatestIndexedBlock$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LatestIndexedBlock$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LatestIndexedBlock$Outbound` instead. */ type Outbound = LatestIndexedBlock$Outbound; } export declare function latestIndexedBlockToJSON(latestIndexedBlock: LatestIndexedBlock): string; export declare function latestIndexedBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=latestindexedblock.d.ts.map