import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionEntitiesResponseBodyEntitiesEntity extends $dara.Model { entityId?: string; entityInfo?: string; entityName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRecognitionEntitiesResponseBodyEntities extends $dara.Model { entity?: ListRecognitionEntitiesResponseBodyEntitiesEntity[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRecognitionEntitiesResponseBody extends $dara.Model { entities?: ListRecognitionEntitiesResponseBodyEntities; /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * **Request ID** * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 100 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }