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