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 GetApiV3NnsParticipationRateIncludeTopic: { readonly TopicUnspecified: "TOPIC_UNSPECIFIED"; readonly TopicNeuronManagement: "TOPIC_NEURON_MANAGEMENT"; readonly TopicExchangeRate: "TOPIC_EXCHANGE_RATE"; readonly TopicNetworkEconomics: "TOPIC_NETWORK_ECONOMICS"; readonly TopicGovernance: "TOPIC_GOVERNANCE"; readonly TopicNodeAdmin: "TOPIC_NODE_ADMIN"; readonly TopicParticipantManagement: "TOPIC_PARTICIPANT_MANAGEMENT"; readonly TopicSubnetManagement: "TOPIC_SUBNET_MANAGEMENT"; readonly TopicNetworkCanisterManagement: "TOPIC_NETWORK_CANISTER_MANAGEMENT"; readonly TopicKyc: "TOPIC_KYC"; readonly TopicNodeProviderRewards: "TOPIC_NODE_PROVIDER_REWARDS"; readonly TopicSnsDecentralizationSale: "TOPIC_SNS_DECENTRALIZATION_SALE"; readonly TopicIcOsVersionDeployment: "TOPIC_IC_OS_VERSION_DEPLOYMENT"; readonly TopicIcOsVersionElection: "TOPIC_IC_OS_VERSION_ELECTION"; readonly TopicSnsAndCommunityFund: "TOPIC_SNS_AND_COMMUNITY_FUND"; readonly TopicApiBoundaryNodeManagement: "TOPIC_API_BOUNDARY_NODE_MANAGEMENT"; readonly TopicSubnetRental: "TOPIC_SUBNET_RENTAL"; readonly TopicProtocolCanisterManagement: "TOPIC_PROTOCOL_CANISTER_MANAGEMENT"; readonly TopicServiceNervousSystemManagement: "TOPIC_SERVICE_NERVOUS_SYSTEM_MANAGEMENT"; }; export type GetApiV3NnsParticipationRateIncludeTopic = ClosedEnum; export type GetApiV3NnsParticipationRateRequest = { /** * End Timestamp */ end?: number | null | undefined; /** * Start Timestamp */ start?: number | null | undefined; /** * Float Step value */ step?: number | null | undefined; includeTopic?: GetApiV3NnsParticipationRateIncludeTopic | null | undefined; }; /** @internal */ export declare const GetApiV3NnsParticipationRateIncludeTopic$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NnsParticipationRateIncludeTopic$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 GetApiV3NnsParticipationRateIncludeTopic$ { /** @deprecated use `GetApiV3NnsParticipationRateIncludeTopic$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly TopicUnspecified: "TOPIC_UNSPECIFIED"; readonly TopicNeuronManagement: "TOPIC_NEURON_MANAGEMENT"; readonly TopicExchangeRate: "TOPIC_EXCHANGE_RATE"; readonly TopicNetworkEconomics: "TOPIC_NETWORK_ECONOMICS"; readonly TopicGovernance: "TOPIC_GOVERNANCE"; readonly TopicNodeAdmin: "TOPIC_NODE_ADMIN"; readonly TopicParticipantManagement: "TOPIC_PARTICIPANT_MANAGEMENT"; readonly TopicSubnetManagement: "TOPIC_SUBNET_MANAGEMENT"; readonly TopicNetworkCanisterManagement: "TOPIC_NETWORK_CANISTER_MANAGEMENT"; readonly TopicKyc: "TOPIC_KYC"; readonly TopicNodeProviderRewards: "TOPIC_NODE_PROVIDER_REWARDS"; readonly TopicSnsDecentralizationSale: "TOPIC_SNS_DECENTRALIZATION_SALE"; readonly TopicIcOsVersionDeployment: "TOPIC_IC_OS_VERSION_DEPLOYMENT"; readonly TopicIcOsVersionElection: "TOPIC_IC_OS_VERSION_ELECTION"; readonly TopicSnsAndCommunityFund: "TOPIC_SNS_AND_COMMUNITY_FUND"; readonly TopicApiBoundaryNodeManagement: "TOPIC_API_BOUNDARY_NODE_MANAGEMENT"; readonly TopicSubnetRental: "TOPIC_SUBNET_RENTAL"; readonly TopicProtocolCanisterManagement: "TOPIC_PROTOCOL_CANISTER_MANAGEMENT"; readonly TopicServiceNervousSystemManagement: "TOPIC_SERVICE_NERVOUS_SYSTEM_MANAGEMENT"; }>; /** @deprecated use `GetApiV3NnsParticipationRateIncludeTopic$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly TopicUnspecified: "TOPIC_UNSPECIFIED"; readonly TopicNeuronManagement: "TOPIC_NEURON_MANAGEMENT"; readonly TopicExchangeRate: "TOPIC_EXCHANGE_RATE"; readonly TopicNetworkEconomics: "TOPIC_NETWORK_ECONOMICS"; readonly TopicGovernance: "TOPIC_GOVERNANCE"; readonly TopicNodeAdmin: "TOPIC_NODE_ADMIN"; readonly TopicParticipantManagement: "TOPIC_PARTICIPANT_MANAGEMENT"; readonly TopicSubnetManagement: "TOPIC_SUBNET_MANAGEMENT"; readonly TopicNetworkCanisterManagement: "TOPIC_NETWORK_CANISTER_MANAGEMENT"; readonly TopicKyc: "TOPIC_KYC"; readonly TopicNodeProviderRewards: "TOPIC_NODE_PROVIDER_REWARDS"; readonly TopicSnsDecentralizationSale: "TOPIC_SNS_DECENTRALIZATION_SALE"; readonly TopicIcOsVersionDeployment: "TOPIC_IC_OS_VERSION_DEPLOYMENT"; readonly TopicIcOsVersionElection: "TOPIC_IC_OS_VERSION_ELECTION"; readonly TopicSnsAndCommunityFund: "TOPIC_SNS_AND_COMMUNITY_FUND"; readonly TopicApiBoundaryNodeManagement: "TOPIC_API_BOUNDARY_NODE_MANAGEMENT"; readonly TopicSubnetRental: "TOPIC_SUBNET_RENTAL"; readonly TopicProtocolCanisterManagement: "TOPIC_PROTOCOL_CANISTER_MANAGEMENT"; readonly TopicServiceNervousSystemManagement: "TOPIC_SERVICE_NERVOUS_SYSTEM_MANAGEMENT"; }>; } /** @internal */ export declare const GetApiV3NnsParticipationRateRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NnsParticipationRateRequest$Outbound = { end: number | null; start: number | null; step: number | null; include_topic: string | null; }; /** @internal */ export declare const GetApiV3NnsParticipationRateRequest$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 GetApiV3NnsParticipationRateRequest$ { /** @deprecated use `GetApiV3NnsParticipationRateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NnsParticipationRateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NnsParticipationRateRequest$Outbound` instead. */ type Outbound = GetApiV3NnsParticipationRateRequest$Outbound; } export declare function getApiV3NnsParticipationRateRequestToJSON(getApiV3NnsParticipationRateRequest: GetApiV3NnsParticipationRateRequest): string; export declare function getApiV3NnsParticipationRateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3nnsparticipationrate.d.ts.map