import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Level: { readonly Info: "info"; readonly Warn: "warn"; readonly Error: "error"; }; export type Level = ClosedEnum; export declare const FineTuningEventType: { readonly Message: "message"; readonly Metrics: "metrics"; }; export type FineTuningEventType = ClosedEnum; export type FineTuningEvent = { id: string; object: "fine_tuning.job.event"; createdAt: number; level: Level; message: string; type?: FineTuningEventType | null | undefined; data?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const Level$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Level$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FineTuningEventType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FineTuningEventType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FineTuningEvent$inboundSchema: z.ZodType; /** @internal */ export type FineTuningEvent$Outbound = { id: string; object: "fine_tuning.job.event"; created_at: number; level: string; message: string; type?: string | null | undefined; data?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const FineTuningEvent$outboundSchema: z.ZodType; export declare function fineTuningEventToJSON(fineTuningEvent: FineTuningEvent): string; export declare function fineTuningEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=finetuningevent.d.ts.map