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 GetApiV3MetricsLatestRewardEventTotalAvailableFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3MetricsLatestRewardEventTotalAvailableFormat = ClosedEnum; export type GetApiV3MetricsLatestRewardEventTotalAvailableRequest = { /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3MetricsLatestRewardEventTotalAvailableFormat | undefined; /** * Start Timestamp */ start?: number | null | undefined; /** * Float Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsLatestRewardEventTotalAvailableFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3MetricsLatestRewardEventTotalAvailableFormat$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 GetApiV3MetricsLatestRewardEventTotalAvailableFormat$ { /** @deprecated use `GetApiV3MetricsLatestRewardEventTotalAvailableFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3MetricsLatestRewardEventTotalAvailableFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3MetricsLatestRewardEventTotalAvailableRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsLatestRewardEventTotalAvailableRequest$Outbound = { end: number | null; format: string; start: number | null; step: number; }; /** @internal */ export declare const GetApiV3MetricsLatestRewardEventTotalAvailableRequest$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 GetApiV3MetricsLatestRewardEventTotalAvailableRequest$ { /** @deprecated use `GetApiV3MetricsLatestRewardEventTotalAvailableRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsLatestRewardEventTotalAvailableRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsLatestRewardEventTotalAvailableRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsLatestRewardEventTotalAvailableRequest$Outbound; } export declare function getApiV3MetricsLatestRewardEventTotalAvailableRequestToJSON(getApiV3MetricsLatestRewardEventTotalAvailableRequest: GetApiV3MetricsLatestRewardEventTotalAvailableRequest): string; export declare function getApiV3MetricsLatestRewardEventTotalAvailableRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricslatestrewardeventtotalavailable.d.ts.map