import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SearchVoicesRequest = { /** * 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; /** * Filter by language (comma-separated) */ language?: string | undefined; /** * Filter by gender (comma-separated) */ gender?: string | undefined; /** * Filter by age (comma-separated) */ age?: string | undefined; /** * Filter by use case (comma-separated) */ useCase?: string | undefined; /** * Filter by use cases array (comma-separated for OR logic) */ useCases?: string | undefined; /** * Filter by style (comma-separated for OR, semicolon-separated for AND). Mixing comma and semicolon is invalid and will result in 400. Note: AND semantics apply across styles on a single character; cloned voices have a single style and will only match AND when exactly one style is requested and equals the cloned voice style. */ style?: string | undefined; /** * Filter by model (comma-separated) */ model?: string | undefined; }; /** @internal */ export declare const SearchVoicesRequest$inboundSchema: z.ZodType; /** @internal */ export type SearchVoicesRequest$Outbound = { page_size?: number | undefined; next_page_token?: string | undefined; name?: string | undefined; description?: string | undefined; language?: string | undefined; gender?: string | undefined; age?: string | undefined; use_case?: string | undefined; use_cases?: string | undefined; style?: string | undefined; model?: string | undefined; }; /** @internal */ export declare const SearchVoicesRequest$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 SearchVoicesRequest$ { /** @deprecated use `SearchVoicesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SearchVoicesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SearchVoicesRequest$Outbound` instead. */ type Outbound = SearchVoicesRequest$Outbound; } export declare function searchVoicesRequestToJSON(searchVoicesRequest: SearchVoicesRequest): string; export declare function searchVoicesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchvoices.d.ts.map