import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EvalSuiteManifest, EvalSuiteManifest$Outbound } from "./evalsuitemanifest.js"; export type CreateEvalSuiteRequest = { name: string; description?: string | undefined; manifest: EvalSuiteManifest; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateEvalSuiteRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateEvalSuiteRequest$Outbound = { name: string; description?: string | undefined; manifest: EvalSuiteManifest$Outbound; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateEvalSuiteRequest$outboundSchema: z.ZodType; export declare function createEvalSuiteRequestToJSON(createEvalSuiteRequest: CreateEvalSuiteRequest): string; export declare function createEvalSuiteRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createevalsuiterequest.d.ts.map