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 GetApiV3NeuronVotingPowersOwner: { readonly Dfinity: "DFINITY"; readonly All: "ALL"; }; export type GetApiV3NeuronVotingPowersOwner = ClosedEnum; /** * Kind of voting power */ export declare const GetApiV3NeuronVotingPowersKind: { readonly DecidingVotingPower: "deciding_voting_power"; readonly PotentialVotingPower: "potential_voting_power"; }; /** * Kind of voting power */ export type GetApiV3NeuronVotingPowersKind = ClosedEnum; export type GetApiV3NeuronVotingPowersRequest = { /** * Start Timestamp */ start?: number | null | undefined; owner?: Array | undefined; /** * Kind of voting power */ kind?: GetApiV3NeuronVotingPowersKind | undefined; /** * End Timestamp */ end?: number | null | undefined; /** * Integer step value multiple of 600(10min) */ step?: number | undefined; }; /** @internal */ export declare const GetApiV3NeuronVotingPowersOwner$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NeuronVotingPowersOwner$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 GetApiV3NeuronVotingPowersOwner$ { /** @deprecated use `GetApiV3NeuronVotingPowersOwner$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Dfinity: "DFINITY"; readonly All: "ALL"; }>; /** @deprecated use `GetApiV3NeuronVotingPowersOwner$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Dfinity: "DFINITY"; readonly All: "ALL"; }>; } /** @internal */ export declare const GetApiV3NeuronVotingPowersKind$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NeuronVotingPowersKind$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 GetApiV3NeuronVotingPowersKind$ { /** @deprecated use `GetApiV3NeuronVotingPowersKind$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DecidingVotingPower: "deciding_voting_power"; readonly PotentialVotingPower: "potential_voting_power"; }>; /** @deprecated use `GetApiV3NeuronVotingPowersKind$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DecidingVotingPower: "deciding_voting_power"; readonly PotentialVotingPower: "potential_voting_power"; }>; } /** @internal */ export declare const GetApiV3NeuronVotingPowersRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NeuronVotingPowersRequest$Outbound = { start: number | null; owner?: Array | undefined; kind: string; end: number | null; step: number; }; /** @internal */ export declare const GetApiV3NeuronVotingPowersRequest$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 GetApiV3NeuronVotingPowersRequest$ { /** @deprecated use `GetApiV3NeuronVotingPowersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronVotingPowersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronVotingPowersRequest$Outbound` instead. */ type Outbound = GetApiV3NeuronVotingPowersRequest$Outbound; } export declare function getApiV3NeuronVotingPowersRequestToJSON(getApiV3NeuronVotingPowersRequest: GetApiV3NeuronVotingPowersRequest): string; export declare function getApiV3NeuronVotingPowersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3neuronvotingpowers.d.ts.map