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 IncludeState: { readonly Dissolved: "Dissolved"; readonly Dissolving: "Dissolving"; readonly NotDissolving: "NotDissolving"; readonly Spawning: "Spawning"; readonly Unknown: "Unknown"; readonly Unspecified: "Unspecified"; }; export type IncludeState = ClosedEnum; export declare const IncludeType: { readonly Gtc: "gtc"; readonly Known: "known"; }; export type IncludeType = ClosedEnum; export declare const GetApiV3NeuronsFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3NeuronsFormat = ClosedEnum; export type GetApiV3NeuronsRequest = { includeState?: Array | undefined; includeType?: Array | undefined; limit?: number | undefined; maxNeuronIndex?: number | null | undefined; offset?: number | undefined; /** * Available values : id, name, state, age_seconds, dissolve_delay_seconds, voting_power, created_timestamp_seconds, stake_e8s, joined_community_fund_timestamp_seconds */ sortBy?: any | undefined; format?: GetApiV3NeuronsFormat | undefined; }; /** @internal */ export declare const IncludeState$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IncludeState$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 IncludeState$ { /** @deprecated use `IncludeState$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Dissolved: "Dissolved"; readonly Dissolving: "Dissolving"; readonly NotDissolving: "NotDissolving"; readonly Spawning: "Spawning"; readonly Unknown: "Unknown"; readonly Unspecified: "Unspecified"; }>; /** @deprecated use `IncludeState$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Dissolved: "Dissolved"; readonly Dissolving: "Dissolving"; readonly NotDissolving: "NotDissolving"; readonly Spawning: "Spawning"; readonly Unknown: "Unknown"; readonly Unspecified: "Unspecified"; }>; } /** @internal */ export declare const IncludeType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IncludeType$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 IncludeType$ { /** @deprecated use `IncludeType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Gtc: "gtc"; readonly Known: "known"; }>; /** @deprecated use `IncludeType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Gtc: "gtc"; readonly Known: "known"; }>; } /** @internal */ export declare const GetApiV3NeuronsFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NeuronsFormat$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 GetApiV3NeuronsFormat$ { /** @deprecated use `GetApiV3NeuronsFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3NeuronsFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3NeuronsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NeuronsRequest$Outbound = { include_state?: Array | undefined; include_type?: Array | undefined; limit: number; max_neuron_index: number | null; offset: number; sort_by?: any; format: string; }; /** @internal */ export declare const GetApiV3NeuronsRequest$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 GetApiV3NeuronsRequest$ { /** @deprecated use `GetApiV3NeuronsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronsRequest$Outbound` instead. */ type Outbound = GetApiV3NeuronsRequest$Outbound; } export declare function getApiV3NeuronsRequestToJSON(getApiV3NeuronsRequest: GetApiV3NeuronsRequest): string; export declare function getApiV3NeuronsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3neurons.d.ts.map