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