import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3MetricsBlockHeightFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3MetricsBlockHeightFormat = ClosedEnum; export type GetApiV3MetricsBlockHeightRequest = { /** * Start Timestamp */ start?: number | null | undefined; /** * Subnet ID */ subnet?: string | null | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3MetricsBlockHeightFormat | undefined; /** * Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsBlockHeightFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3MetricsBlockHeightFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3MetricsBlockHeightFormat$ { /** @deprecated use `GetApiV3MetricsBlockHeightFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3MetricsBlockHeightFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3MetricsBlockHeightRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsBlockHeightRequest$Outbound = { start: number | null; subnet: string | null; end: number | null; format: string; step: number; }; /** @internal */ export declare const GetApiV3MetricsBlockHeightRequest$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 GetApiV3MetricsBlockHeightRequest$ { /** @deprecated use `GetApiV3MetricsBlockHeightRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsBlockHeightRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsBlockHeightRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsBlockHeightRequest$Outbound; } export declare function getApiV3MetricsBlockHeightRequestToJSON(getApiV3MetricsBlockHeightRequest: GetApiV3MetricsBlockHeightRequest): string; export declare function getApiV3MetricsBlockHeightRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricsblockheight.d.ts.map