import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AgentsInsightsV2Response } from "./agentsinsightsv2response.js"; import { AssistantInsightsResponse } from "./assistantinsightsresponse.js"; import { GleanAssistInsightsResponse } from "./gleanassistinsightsresponse.js"; import { InsightsOverviewResponse } from "./insightsoverviewresponse.js"; export type InsightsResponse = { gleanAssist?: GleanAssistInsightsResponse | undefined; overviewResponse?: InsightsOverviewResponse | undefined; assistantResponse?: AssistantInsightsResponse | undefined; agentsResponse?: AgentsInsightsV2Response | undefined; }; /** @internal */ export declare const InsightsResponse$inboundSchema: z.ZodType; export declare function insightsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=insightsresponse.d.ts.map