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