import { BaseModuleEntity } from '../base/baseModuleEntity';
import { ChartCategoryModel } from './chartCategoryModel';
import { ChartContentModel } from './chartContentModel';
export declare class ChartContentCategoryModel extends BaseModuleEntity<number> {
    content: ChartContentModel;
    category: ChartCategoryModel;
    linkCategoryId: number;
    linkContentId: number;
}
