import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UserActivityInsight } from "./useractivityinsight.js"; export type GleanAssistInsightsResponse = { /** * Unix timestamp of the last activity processed to make the response (in seconds since epoch UTC). */ lastLogTimestamp?: number | undefined; /** * Insights for all active users with respect to set of actions. */ activityInsights?: Array | undefined; /** * Total number of active users in the requested period. */ totalActiveUsers?: number | undefined; /** * List of datasource instances for which glean assist is enabled. */ datasourceInstances?: Array | undefined; /** * List of departments applicable for users tab. */ departments?: Array | undefined; }; /** @internal */ export declare const GleanAssistInsightsResponse$inboundSchema: z.ZodType; export declare function gleanAssistInsightsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gleanassistinsightsresponse.d.ts.map