import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { GetCustomVoiceResponse, GetCustomVoiceResponse$Outbound } from "./getcustomvoiceresponse.js"; export type GetCustomVoiceListResponse = { /** * List of custom voice items */ items: Array; /** * Total number of available custom voices */ total: number; /** * Token for fetching the next page of results. A valid non-negative integer string (e.g., "10", "20"). Null if no more pages. */ nextPageToken?: string | null | undefined; }; /** @internal */ export declare const GetCustomVoiceListResponse$inboundSchema: z.ZodType; /** @internal */ export type GetCustomVoiceListResponse$Outbound = { items: Array; total: number; next_page_token?: string | null | undefined; }; /** @internal */ export declare const GetCustomVoiceListResponse$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 GetCustomVoiceListResponse$ { /** @deprecated use `GetCustomVoiceListResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCustomVoiceListResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCustomVoiceListResponse$Outbound` instead. */ type Outbound = GetCustomVoiceListResponse$Outbound; } export declare function getCustomVoiceListResponseToJSON(getCustomVoiceListResponse: GetCustomVoiceListResponse): string; export declare function getCustomVoiceListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcustomvoicelistresponse.d.ts.map