import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type InsightsChatSummary = { /** * 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 chats by users over the specified time period. */ numChats?: number | undefined; /** * Total number of distinct users who used Chat over the specified time period. */ numChatUsers?: number | undefined; }; /** @internal */ export declare const InsightsChatSummary$inboundSchema: z.ZodType; export declare function insightsChatSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=insightschatsummary.d.ts.map