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 GetApiV3NeuronMaturityModulationsFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3NeuronMaturityModulationsFormat = ClosedEnum; export type GetApiV3NeuronMaturityModulationsRequest = { /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3NeuronMaturityModulationsFormat | undefined; /** * Start Timestamp */ start?: number | null | undefined; }; /** @internal */ export declare const GetApiV3NeuronMaturityModulationsFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3NeuronMaturityModulationsFormat$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 GetApiV3NeuronMaturityModulationsFormat$ { /** @deprecated use `GetApiV3NeuronMaturityModulationsFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3NeuronMaturityModulationsFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3NeuronMaturityModulationsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NeuronMaturityModulationsRequest$Outbound = { end: number | null; format: string; start: number | null; }; /** @internal */ export declare const GetApiV3NeuronMaturityModulationsRequest$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 GetApiV3NeuronMaturityModulationsRequest$ { /** @deprecated use `GetApiV3NeuronMaturityModulationsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronMaturityModulationsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NeuronMaturityModulationsRequest$Outbound` instead. */ type Outbound = GetApiV3NeuronMaturityModulationsRequest$Outbound; } export declare function getApiV3NeuronMaturityModulationsRequestToJSON(getApiV3NeuronMaturityModulationsRequest: GetApiV3NeuronMaturityModulationsRequest): string; export declare function getApiV3NeuronMaturityModulationsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3neuronmaturitymodulations.d.ts.map