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