import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type APISampleData = { /** * Language of the sample */ language: string; /** * Style of the sample */ style: string; /** * Model of the sample */ model: string; /** * URL to the sample audio file */ url: string; }; /** @internal */ export declare const APISampleData$inboundSchema: z.ZodType; /** @internal */ export type APISampleData$Outbound = { language: string; style: string; model: string; url: string; }; /** @internal */ export declare const APISampleData$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace APISampleData$ { /** @deprecated use `APISampleData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `APISampleData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `APISampleData$Outbound` instead. */ type Outbound = APISampleData$Outbound; } export declare function apiSampleDataToJSON(apiSampleData: APISampleData): string; export declare function apiSampleDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=apisampledata.d.ts.map