import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person } from "./person.js"; export type AgentUsersInsight = { person?: Person | undefined; /** * Department name */ departmentName?: string | undefined; /** * Total number of agents used by this user over the specified time period. */ agentsUsedCount?: number | undefined; /** * Average number of runs per day for this user over the specified time period. */ averageRunsPerDayCount?: number | undefined; /** * Total number of agents created by this user over the specified time period. */ agentsCreatedCount?: number | undefined; /** * Total number of agent runs for this user over the specified time period. */ runCount?: number | undefined; }; /** @internal */ export declare const AgentUsersInsight$inboundSchema: z.ZodType; export declare function agentUsersInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentusersinsight.d.ts.map