import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EvalSampleAudioObject = { object: "eval.sample.audio"; /** * Playable clip reference: a base64 `data:` URI or an http(s) URL. */ audio: string; /** * Echoes the requested sample index so the client has a complete cache key without tracking it. */ sampleIndex: number; /** * The task the clip was resolved from (the clip differs across tasks). */ taskId: string; /** * The model row the clip was read from. The clip is identical across models within a task. */ model: string; }; /** @internal */ export declare const EvalSampleAudioObject$inboundSchema: z.ZodType; /** @internal */ export type EvalSampleAudioObject$Outbound = { object: "eval.sample.audio"; audio: string; sample_index: number; task_id: string; model: string; }; /** @internal */ export declare const EvalSampleAudioObject$outboundSchema: z.ZodType; export declare function evalSampleAudioObjectToJSON(evalSampleAudioObject: EvalSampleAudioObject): string; export declare function evalSampleAudioObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evalsampleaudioobject.d.ts.map