import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3NeuronsNeuronIdRequest = { neuronId: number; }; /** @internal */ export declare const GetApiV3NeuronsNeuronIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NeuronsNeuronIdRequest$Outbound = { neuron_id: number; }; /** @internal */ export declare const GetApiV3NeuronsNeuronIdRequest$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 GetApiV3NeuronsNeuronIdRequest$ { /** @deprecated use `GetApiV3NeuronsNeuronIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronsNeuronIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronsNeuronIdRequest$Outbound` instead. */ type Outbound = GetApiV3NeuronsNeuronIdRequest$Outbound; } export declare function getApiV3NeuronsNeuronIdRequestToJSON(getApiV3NeuronsNeuronIdRequest: GetApiV3NeuronsNeuronIdRequest): string; export declare function getApiV3NeuronsNeuronIdRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3neuronsneuronid.d.ts.map