import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SearchCustomVoicesRequest = { /** * Number of items per page (default: 20, min: 10, max: 100) */ pageSize?: number | undefined; /** * Token for pagination (obtained from the previous page's response) */ nextPageToken?: string | undefined; /** * Search across name. Space separated. */ name?: string | undefined; /** * Search across description. Space separated. */ description?: string | undefined; }; /** @internal */ export declare const SearchCustomVoicesRequest$inboundSchema: z.ZodType; /** @internal */ export type SearchCustomVoicesRequest$Outbound = { page_size?: number | undefined; next_page_token?: string | undefined; name?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const SearchCustomVoicesRequest$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 SearchCustomVoicesRequest$ { /** @deprecated use `SearchCustomVoicesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SearchCustomVoicesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SearchCustomVoicesRequest$Outbound` instead. */ type Outbound = SearchCustomVoicesRequest$Outbound; } export declare function searchCustomVoicesRequestToJSON(searchCustomVoicesRequest: SearchCustomVoicesRequest): string; export declare function searchCustomVoicesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchcustomvoices.d.ts.map