import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IconConfig } from "./iconconfig.js"; export type AgentsUsageByDepartmentInsight = { /** * Name of the department */ department?: string | undefined; /** * Percentage of employees in the department who have used agents at least once over the specified time period. */ agentAdoptionRate?: number | undefined; /** * Total number of users in this department who have used any agent over the specified time period. */ userCount?: number | undefined; /** * Total number of runs in this department over the specified time period. */ runCount?: number | undefined; /** * ID of the agent to be shown in the agent column in this department over the specified time period. */ agentId?: string | undefined; /** * Name of the agent to be shown in the agent column in this department over the specified time period. */ agentName?: string | undefined; /** * Defines how to render an icon */ icon?: IconConfig | undefined; /** * Indicates whether the agent has been deleted */ isDeleted?: boolean | undefined; }; /** @internal */ export declare const AgentsUsageByDepartmentInsight$inboundSchema: z.ZodType; export declare function agentsUsageByDepartmentInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsusagebydepartmentinsight.d.ts.map