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