import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListVoicesRequest = { /** * 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; }; /** @internal */ export declare const ListVoicesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListVoicesRequest$Outbound = { page_size?: number | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListVoicesRequest$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 ListVoicesRequest$ { /** @deprecated use `ListVoicesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListVoicesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListVoicesRequest$Outbound` instead. */ type Outbound = ListVoicesRequest$Outbound; } export declare function listVoicesRequestToJSON(listVoicesRequest: ListVoicesRequest): string; export declare function listVoicesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listvoices.d.ts.map