import * as $dara from '@darabonba/typescript'; export declare class CreateRecognitionLibRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm. Valid values: * * - landmark * * - object * * - logo * * - face * * - label * * This parameter is required. * * @example * landmark */ algorithm?: string; /** * @remarks * The description of the recognition library. Max length: 128 bytes. * * @example * For storing product recognition samples */ libDescription?: string; /** * @remarks * The name of the recognition library. Max length: 64 bytes. * * This parameter is required. * * @example * Landmark test library */ libName?: string; ownerAccount?: string; ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }