import { EntityMasterService } from '../service/entity-master.service'; export declare class EntityMasterController { private readonly entityMasterService; constructor(entityMasterService: EntityMasterService); getEntityById(id: number, req: Request & { user: any; }): Promise; getAllEntity(entity_type: string, req: Request & { user: any; }): Promise<{ label: string; value: any; }[]>; }