import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EvalSampleObject, EvalSampleObject$Outbound } from "./evalsampleobject.js"; export type EvalSampleList = { object: "list"; data: Array; firstId?: string | undefined; lastId?: string | undefined; hasMore: boolean; }; /** @internal */ export declare const EvalSampleList$inboundSchema: z.ZodType; /** @internal */ export type EvalSampleList$Outbound = { object: "list"; data: Array; first_id?: string | undefined; last_id?: string | undefined; has_more: boolean; }; /** @internal */ export declare const EvalSampleList$outboundSchema: z.ZodType; export declare function evalSampleListToJSON(evalSampleList: EvalSampleList): string; export declare function evalSampleListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evalsamplelist.d.ts.map