import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FineTuningError = { code: string; message: string; param?: string | null | undefined; }; /** @internal */ export declare const FineTuningError$inboundSchema: z.ZodType; /** @internal */ export type FineTuningError$Outbound = { code: string; message: string; param?: string | null | undefined; }; /** @internal */ export declare const FineTuningError$outboundSchema: z.ZodType; export declare function fineTuningErrorToJSON(fineTuningError: FineTuningError): string; export declare function fineTuningErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=finetuningerror.d.ts.map