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