import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EstimatedActivityError = { averageTransactionAmount?: string | undefined; maximumTransactionAmount?: string | undefined; monthlyVolumeRange?: string | undefined; }; /** @internal */ export declare const EstimatedActivityError$inboundSchema: z.ZodType; /** @internal */ export type EstimatedActivityError$Outbound = { averageTransactionAmount?: string | undefined; maximumTransactionAmount?: string | undefined; monthlyVolumeRange?: string | undefined; }; /** @internal */ export declare const EstimatedActivityError$outboundSchema: z.ZodType; export declare function estimatedActivityErrorToJSON(estimatedActivityError: EstimatedActivityError): string; export declare function estimatedActivityErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=estimatedactivityerror.d.ts.map