import * as z from "zod/v3"; export type AIInsightsReportSpec = { /** * The report model type. */ model: "ai_insights"; /** * The parameters for the AI insights report model. */ params: { [k: string]: any; }; }; /** @internal */ export type AIInsightsReportSpec$Outbound = { model: "ai_insights"; params: { [k: string]: any; }; }; /** @internal */ export declare const AIInsightsReportSpec$outboundSchema: z.ZodType; export declare function aiInsightsReportSpecToJSON(aiInsightsReportSpec: AIInsightsReportSpec): string; //# sourceMappingURL=aiinsightsreportspec.d.ts.map