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 AgentsTimeSavedInsight = { /** * 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 runs for this agent over the specified time period. */ runCount?: number | undefined; /** * Average minutes saved per run for this agent over the specified time period. */ minsPerRun?: number | undefined; /** * Total number of users who provided feedback on time saved for this agent over the specified time period. */ feedbackUserCount?: number | undefined; }; /** @internal */ export declare const AgentsTimeSavedInsight$inboundSchema: z.ZodType; export declare function agentsTimeSavedInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentstimesavedinsight.d.ts.map