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