import { BusinessParamDto } from '../dtos/business.param.dto'; import { TagAssignmentEntity } from '../../accessUtility/entities/tag.assignment.entity'; import { AddTagDto } from '../dtos/add.tag.dto'; export declare class CommonTagController { protected sourceType: string; protected parentValidator: any; getAll(params: BusinessParamDto): Promise; addTag(params: BusinessParamDto, body: AddTagDto): Promise; deleteTag(params: BusinessParamDto): Promise; protected checkAccess(params: BusinessParamDto): Promise; }