import * as z from "zod/v3"; import { Period, Period$Outbound } from "./period.js"; export type AgentsInsightsV2Request = { /** * IDs of the Agents for which Insights should be returned. An empty array signifies all. */ agentIds?: Array | undefined; /** * Departments for which Insights are requested. */ departments?: Array | undefined; dayRange?: Period | undefined; }; /** @internal */ export type AgentsInsightsV2Request$Outbound = { agentIds?: Array | undefined; departments?: Array | undefined; dayRange?: Period$Outbound | undefined; }; /** @internal */ export declare const AgentsInsightsV2Request$outboundSchema: z.ZodType; export declare function agentsInsightsV2RequestToJSON(agentsInsightsV2Request: AgentsInsightsV2Request): string; //# sourceMappingURL=agentsinsightsv2request.d.ts.map