import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionLibsRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm. Valid values: * * * landmark * * object * * logo * * face * * label * * This parameter is required. * * @example * landmark */ algorithm?: string; libId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. * * This parameter is required. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Valid values: 1 to 50. * * This parameter is required. * * @example * 10 */ pageSize?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }