import * as z from "zod/v3"; import * as components from "../components/index.js"; export type InsightsRequest = { /** * The client's preferred locale in rfc5646 format (e.g. `en`, `ja`, `pt-BR`). If omitted, the `Accept-Language` will be used. If not present or not supported, defaults to the closest match or `en`. */ locale?: string | undefined; /** * Includes request parameters for insights requests. */ insightsRequest: components.InsightsRequest; }; /** @internal */ export type InsightsRequest$Outbound = { locale?: string | undefined; InsightsRequest: components.InsightsRequest$Outbound; }; /** @internal */ export declare const InsightsRequest$outboundSchema: z.ZodType; export declare function insightsRequestToJSON(insightsRequest: InsightsRequest): string; //# sourceMappingURL=insights.d.ts.map