import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { ActivityCurrencyFilter, ActivityCurrencyFilter$Outbound } from "./activitycurrencyfilter.js"; import { ActivityType } from "./activitytype.js"; import { ActivityUserFilter, ActivityUserFilter$Outbound } from "./activityuserfilter.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ActivitySearchFilter = { blockchains?: Array | undefined; types?: Array | undefined; collections?: Array | undefined; items?: Array | undefined; users?: ActivityUserFilter | undefined; currencies?: ActivityCurrencyFilter | undefined; from?: Date | undefined; to?: Date | undefined; fromBlockInclusive?: number | undefined; toBlockExclusive?: number | undefined; }; /** @internal */ export declare const ActivitySearchFilter$inboundSchema: z.ZodType; /** @internal */ export type ActivitySearchFilter$Outbound = { blockchains?: Array | undefined; types?: Array | undefined; collections?: Array | undefined; items?: Array | undefined; users?: ActivityUserFilter$Outbound | undefined; currencies?: ActivityCurrencyFilter$Outbound | undefined; from?: string | undefined; to?: string | undefined; fromBlockInclusive?: number | undefined; toBlockExclusive?: number | undefined; }; /** @internal */ export declare const ActivitySearchFilter$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 ActivitySearchFilter$ { /** @deprecated use `ActivitySearchFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActivitySearchFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActivitySearchFilter$Outbound` instead. */ type Outbound = ActivitySearchFilter$Outbound; } export declare function activitySearchFilterToJSON(activitySearchFilter: ActivitySearchFilter): string; export declare function activitySearchFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activitysearchfilter.d.ts.map