import * as z from "zod/v3"; import { Period, Period$Outbound } from "./period.js"; export type InsightsAssistantRequest = { /** * Departments for which Insights are requested. */ departments?: Array | undefined; dayRange?: Period | undefined; }; /** @internal */ export type InsightsAssistantRequest$Outbound = { departments?: Array | undefined; dayRange?: Period$Outbound | undefined; }; /** @internal */ export declare const InsightsAssistantRequest$outboundSchema: z.ZodType; export declare function insightsAssistantRequestToJSON(insightsAssistantRequest: InsightsAssistantRequest): string; //# sourceMappingURL=insightsassistantrequest.d.ts.map