import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MonthlyVolumeRange } from "./monthlyvolumerange.js"; export type EstimatedActivity = { averageTransactionAmount?: number | undefined; maximumTransactionAmount?: number | undefined; /** * The low value in each range is included. The high value in each range is excluded. */ monthlyVolumeRange?: MonthlyVolumeRange | undefined; }; /** @internal */ export declare const EstimatedActivity$inboundSchema: z.ZodType; /** @internal */ export type EstimatedActivity$Outbound = { averageTransactionAmount?: number | undefined; maximumTransactionAmount?: number | undefined; monthlyVolumeRange?: string | undefined; }; /** @internal */ export declare const EstimatedActivity$outboundSchema: z.ZodType; export declare function estimatedActivityToJSON(estimatedActivity: EstimatedActivity): string; export declare function estimatedActivityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=estimatedactivity.d.ts.map