import * as $dara from '@darabonba/typescript'; export declare class ListAvatarsRequest extends $dara.Model { /** * @remarks * * The type of the digital human. * * 2DAvatar * * @example * 2DAvatar */ avatarType?: string; /** * @remarks * * The page number. * * Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * * The number of entries per page. * * Default value: 10. * * @example * 10 */ pageSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }