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 GetApiV3BitcoinMainChainHeightFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3BitcoinMainChainHeightFormat = ClosedEnum; /** * Network */ export declare const GetApiV3BitcoinMainChainHeightNetwork: { readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }; /** * Network */ export type GetApiV3BitcoinMainChainHeightNetwork = ClosedEnum; export type GetApiV3BitcoinMainChainHeightRequest = { /** * Start Timestamp */ start?: number | null | undefined; /** * End Timestamp */ end?: number | null | undefined; format?: GetApiV3BitcoinMainChainHeightFormat | undefined; /** * Float Step value */ step?: number | undefined; /** * Network */ network?: GetApiV3BitcoinMainChainHeightNetwork | undefined; }; /** @internal */ export declare const GetApiV3BitcoinMainChainHeightFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3BitcoinMainChainHeightFormat$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 GetApiV3BitcoinMainChainHeightFormat$ { /** @deprecated use `GetApiV3BitcoinMainChainHeightFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3BitcoinMainChainHeightFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3BitcoinMainChainHeightNetwork$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3BitcoinMainChainHeightNetwork$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 GetApiV3BitcoinMainChainHeightNetwork$ { /** @deprecated use `GetApiV3BitcoinMainChainHeightNetwork$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }>; /** @deprecated use `GetApiV3BitcoinMainChainHeightNetwork$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }>; } /** @internal */ export declare const GetApiV3BitcoinMainChainHeightRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3BitcoinMainChainHeightRequest$Outbound = { start: number | null; end: number | null; format: string; step: number; network: string; }; /** @internal */ export declare const GetApiV3BitcoinMainChainHeightRequest$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 GetApiV3BitcoinMainChainHeightRequest$ { /** @deprecated use `GetApiV3BitcoinMainChainHeightRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3BitcoinMainChainHeightRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3BitcoinMainChainHeightRequest$Outbound` instead. */ type Outbound = GetApiV3BitcoinMainChainHeightRequest$Outbound; } export declare function getApiV3BitcoinMainChainHeightRequestToJSON(getApiV3BitcoinMainChainHeightRequest: GetApiV3BitcoinMainChainHeightRequest): string; export declare function getApiV3BitcoinMainChainHeightRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3bitcoinmainchainheight.d.ts.map