import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListFineTuningEventsRequest = { fineTuningJobId: string; after?: string | null | undefined; limit?: number | undefined; }; /** @internal */ export declare const ListFineTuningEventsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListFineTuningEventsRequest$Outbound = { fine_tuning_job_id: string; after?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListFineTuningEventsRequest$outboundSchema: z.ZodType; export declare function listFineTuningEventsRequestToJSON(listFineTuningEventsRequest: ListFineTuningEventsRequest): string; export declare function listFineTuningEventsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listfinetuningevents.d.ts.map