import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ListTransactionVolumeMeta = { totalTransactionsForDataset?: string | undefined; totalVolumeForDataset?: string | undefined; totalTransactionsForAllTime?: string | undefined; totalVolumeForAllTime?: string | undefined; }; /** @internal */ export declare const ListTransactionVolumeMeta$inboundSchema: z.ZodType; /** @internal */ export type ListTransactionVolumeMeta$Outbound = { total_transactions_for_dataset?: string | undefined; total_volume_for_dataset?: string | undefined; total_transactions_for_all_time?: string | undefined; total_volume_for_all_time?: string | undefined; }; /** @internal */ export declare const ListTransactionVolumeMeta$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 ListTransactionVolumeMeta$ { /** @deprecated use `ListTransactionVolumeMeta$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListTransactionVolumeMeta$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListTransactionVolumeMeta$Outbound` instead. */ type Outbound = ListTransactionVolumeMeta$Outbound; } export declare function listTransactionVolumeMetaToJSON(listTransactionVolumeMeta: ListTransactionVolumeMeta): string; export declare function listTransactionVolumeMetaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtransactionvolumemeta.d.ts.map