import { BaseEntity } from '../base/baseEntity';
export declare class CoreUserSupportAccessModel extends BaseEntity<number> {
    linkSiteId: number;
    linkUserId: number;
    moduleName: string;
    moduleEntityName: string;
    accessDeleteRow: boolean;
    accessWatchRow: boolean;
    accessCountRow: boolean;
    accessEditRow: boolean;
    accessAddRow: boolean;
    accessExportFile: boolean;
    accessWatchRowOtherSiteId: boolean;
    accessWatchRowOtherCreatedBy: boolean;
    accessCountRowOtherSiteId: boolean;
    accessCountRowOtherCreatedBy: boolean;
    accessEditRowOtherSiteId: boolean;
    accessEditRowOtherCreatedBy: boolean;
    accessDeleteRowOtherCreatedBy: boolean;
}
