import { AbstractModel } from './abstract-model'; export declare enum TagSystemTags { Deleted = "deleted", Locked = "locked" } export declare class TagSystem extends AbstractModel { readonly name: string; constructor(name: string); static tableName: string; static idColumn: string; static jsonSchema: { type: string; required: string[]; properties: { name: { type: string; minLength: number; maxLength: number; }; }; }; static findOne(name: string): Promise; static find(names: string[]): Promise; }