import { AbstractModel } from './abstract-model'; export declare class ContentLeafTagSystem extends AbstractModel { readonly contentLeafChainId: string; readonly tagSystemName: string; readonly created: Date; static tableName: string; static idColumn: string[]; static jsonSchema: { type: string; required: string[]; properties: { contentLeafChainId: { type: string; }; tagSystemName: { type: string; }; created: { type: string; format: string; }; }; }; }