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 CreateEvalSuiteVersionRequest = { manifest: EvalSuiteManifest; metadata?: { [k: string]: string; } | undefined; makeActive?: boolean | undefined; }; /** @internal */ export declare const CreateEvalSuiteVersionRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateEvalSuiteVersionRequest$Outbound = { manifest: EvalSuiteManifest$Outbound; metadata?: { [k: string]: string; } | undefined; make_active: boolean; }; /** @internal */ export declare const CreateEvalSuiteVersionRequest$outboundSchema: z.ZodType; export declare function createEvalSuiteVersionRequestToJSON(createEvalSuiteVersionRequest: CreateEvalSuiteVersionRequest): string; export declare function createEvalSuiteVersionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createevalsuiteversionrequest.d.ts.map