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