import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InsightsSearchSummary = { /** * Number of current Monthly Active Users, in the specified departments. */ monthlyActiveUsers?: number | undefined; /** * Number of current Weekly Active Users, in the specified departments. */ weeklyActiveUsers?: number | undefined; /** * Total number of searches by users over the specified time period. */ numSearches?: number | undefined; /** * Total number of distinct users who searched over the specified time period. */ numSearchUsers?: number | undefined; }; /** @internal */ export declare const InsightsSearchSummary$inboundSchema: z.ZodType; export declare function insightsSearchSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=insightssearchsummary.d.ts.map