import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetLatestIndexedBlockRequest = { /** * Blockchain name */ blockchain: models.Blockchain; }; /** @internal */ export declare const GetLatestIndexedBlockRequest$inboundSchema: z.ZodType; /** @internal */ export type GetLatestIndexedBlockRequest$Outbound = { blockchain: string; }; /** @internal */ export declare const GetLatestIndexedBlockRequest$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 GetLatestIndexedBlockRequest$ { /** @deprecated use `GetLatestIndexedBlockRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetLatestIndexedBlockRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetLatestIndexedBlockRequest$Outbound` instead. */ type Outbound = GetLatestIndexedBlockRequest$Outbound; } export declare function getLatestIndexedBlockRequestToJSON(getLatestIndexedBlockRequest: GetLatestIndexedBlockRequest): string; export declare function getLatestIndexedBlockRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getlatestindexedblock.d.ts.map