import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ActivityCurrencyFilter = { bid?: Array | undefined; }; /** @internal */ export declare const ActivityCurrencyFilter$inboundSchema: z.ZodType; /** @internal */ export type ActivityCurrencyFilter$Outbound = { bid?: Array | undefined; }; /** @internal */ export declare const ActivityCurrencyFilter$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 ActivityCurrencyFilter$ { /** @deprecated use `ActivityCurrencyFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActivityCurrencyFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActivityCurrencyFilter$Outbound` instead. */ type Outbound = ActivityCurrencyFilter$Outbound; } export declare function activityCurrencyFilterToJSON(activityCurrencyFilter: ActivityCurrencyFilter): string; export declare function activityCurrencyFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitycurrencyfilter.d.ts.map