import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3BlockHeightsRequest = { /** * Subnet ID */ subnet?: string | null | undefined; }; /** @internal */ export declare const GetApiV3BlockHeightsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3BlockHeightsRequest$Outbound = { subnet: string | null; }; /** @internal */ export declare const GetApiV3BlockHeightsRequest$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 GetApiV3BlockHeightsRequest$ { /** @deprecated use `GetApiV3BlockHeightsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3BlockHeightsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3BlockHeightsRequest$Outbound` instead. */ type Outbound = GetApiV3BlockHeightsRequest$Outbound; } export declare function getApiV3BlockHeightsRequestToJSON(getApiV3BlockHeightsRequest: GetApiV3BlockHeightsRequest): string; export declare function getApiV3BlockHeightsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3blockheights.d.ts.map