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