import * as $dara from '@darabonba/typescript'; export declare class ListCustomizedVoicesRequest extends $dara.Model { /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. Default value: 10. Valid values: 1 to 100. * * @example * 10 */ pageSize?: number; /** * @remarks * * The voice type. Valid values: * * * Basic * * Standard * * * If you do not specify this parameter, the default value Basic is used. * * @example * Standard */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }