import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3MetricsTotalActiveNodesCountRequest = { /** * End Timestamp */ end?: number | null | undefined; /** * Start Timestamp */ start?: number | null | undefined; /** * Float Step value */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3MetricsTotalActiveNodesCountRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MetricsTotalActiveNodesCountRequest$Outbound = { end: number | null; start: number | null; step: number; }; /** @internal */ export declare const GetApiV3MetricsTotalActiveNodesCountRequest$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 GetApiV3MetricsTotalActiveNodesCountRequest$ { /** @deprecated use `GetApiV3MetricsTotalActiveNodesCountRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsTotalActiveNodesCountRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MetricsTotalActiveNodesCountRequest$Outbound` instead. */ type Outbound = GetApiV3MetricsTotalActiveNodesCountRequest$Outbound; } export declare function getApiV3MetricsTotalActiveNodesCountRequestToJSON(getApiV3MetricsTotalActiveNodesCountRequest: GetApiV3MetricsTotalActiveNodesCountRequest): string; export declare function getApiV3MetricsTotalActiveNodesCountRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3metricstotalactivenodescount.d.ts.map