import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { VoiceResponse } from "./voiceresponse.js"; /** * Schema for voice list response */ export type VoiceListResponse = { items: Array; total: number; page: number; pageSize: number; totalPages: number; }; /** @internal */ export declare const VoiceListResponse$inboundSchema: z.ZodType; export declare function voiceListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=voicelistresponse.d.ts.map