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 GetApiV3ParticipationRatesFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3ParticipationRatesFormat = ClosedEnum; export declare const GetApiV3ParticipationRatesIncludeTopic: { readonly TopicGovernance: "TOPIC_GOVERNANCE"; }; export type GetApiV3ParticipationRatesIncludeTopic = ClosedEnum; export type GetApiV3ParticipationRatesRequest = { /** * Start Timestamp */ start?: number | null | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3ParticipationRatesFormat | undefined; /** * Step value in seconds(multiple of 86400 seconds(1 day)) */ step?: number | null | undefined; includeTopic?: GetApiV3ParticipationRatesIncludeTopic | null | undefined; }; /** @internal */ export declare const GetApiV3ParticipationRatesFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3ParticipationRatesFormat$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 GetApiV3ParticipationRatesFormat$ { /** @deprecated use `GetApiV3ParticipationRatesFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3ParticipationRatesFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3ParticipationRatesIncludeTopic$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3ParticipationRatesIncludeTopic$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 GetApiV3ParticipationRatesIncludeTopic$ { /** @deprecated use `GetApiV3ParticipationRatesIncludeTopic$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly TopicGovernance: "TOPIC_GOVERNANCE"; }>; /** @deprecated use `GetApiV3ParticipationRatesIncludeTopic$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly TopicGovernance: "TOPIC_GOVERNANCE"; }>; } /** @internal */ export declare const GetApiV3ParticipationRatesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3ParticipationRatesRequest$Outbound = { start: number | null; end: number | null; format: string; step: number | null; include_topic: string | null; }; /** @internal */ export declare const GetApiV3ParticipationRatesRequest$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 GetApiV3ParticipationRatesRequest$ { /** @deprecated use `GetApiV3ParticipationRatesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3ParticipationRatesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3ParticipationRatesRequest$Outbound` instead. */ type Outbound = GetApiV3ParticipationRatesRequest$Outbound; } export declare function getApiV3ParticipationRatesRequestToJSON(getApiV3ParticipationRatesRequest: GetApiV3ParticipationRatesRequest): string; export declare function getApiV3ParticipationRatesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3participationrates.d.ts.map