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 PerAgentInsight = { /** * Agent ID */ agentId?: string | undefined; /** * Agent name */ agentName?: string | undefined; /** * Defines how to render an icon */ icon?: IconConfig | undefined; /** * Indicates whether the agent has been deleted */ isDeleted?: boolean | undefined; /** * Total number of users for this agent over the specified time period. */ userCount?: number | undefined; /** * Total number of runs for this agent over the specified time period. */ runCount?: number | undefined; /** * Total number of upvotes for this agent over the specified time period. */ upvoteCount?: number | undefined; /** * Total number of downvotes for this agent over the specified time period. */ downvoteCount?: number | undefined; }; /** @internal */ export declare const PerAgentInsight$inboundSchema: z.ZodType; export declare function perAgentInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=peragentinsight.d.ts.map