import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ChatCompletionEventPreviewExtraFields = boolean | number | number | string | Date | Array; export type ChatCompletionEventPreview = { eventId: string; correlationId: string; createdAt: Date; extraFields: { [k: string]: boolean | number | number | string | Date | Array | null; }; nbInputTokens: number; nbOutputTokens: number; }; /** @internal */ export declare const ChatCompletionEventPreviewExtraFields$inboundSchema: z.ZodType; export declare function chatCompletionEventPreviewExtraFieldsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ChatCompletionEventPreview$inboundSchema: z.ZodType; export declare function chatCompletionEventPreviewFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chatcompletioneventpreview.d.ts.map