import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type TransactionVolumeMetric = { date: string; timestamp: number; count: number; volume: string; countOverTime: string; }; /** @internal */ export declare const TransactionVolumeMetric$inboundSchema: z.ZodType; /** @internal */ export type TransactionVolumeMetric$Outbound = { date: string; timestamp: number; count: number; volume: string; count_over_time: string; }; /** @internal */ export declare const TransactionVolumeMetric$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 TransactionVolumeMetric$ { /** @deprecated use `TransactionVolumeMetric$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TransactionVolumeMetric$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TransactionVolumeMetric$Outbound` instead. */ type Outbound = TransactionVolumeMetric$Outbound; } export declare function transactionVolumeMetricToJSON(transactionVolumeMetric: TransactionVolumeMetric): string; export declare function transactionVolumeMetricFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transactionvolumemetric.d.ts.map