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