import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FineTuningCheckpoint, FineTuningCheckpoint$Outbound } from "./finetuningcheckpoint.js"; export type ListCheckpointsResponse = { object: "list"; data: Array; hasMore: boolean; firstId?: string | null | undefined; lastId?: string | null | undefined; }; /** @internal */ export declare const ListCheckpointsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListCheckpointsResponse$Outbound = { object: "list"; data: Array; has_more: boolean; first_id?: string | null | undefined; last_id?: string | null | undefined; }; /** @internal */ export declare const ListCheckpointsResponse$outboundSchema: z.ZodType; export declare function listCheckpointsResponseToJSON(listCheckpointsResponse: ListCheckpointsResponse): string; export declare function listCheckpointsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcheckpointsresponse.d.ts.map