import { Request } from 'express'; import { EntityDynamicService } from '../service/entity-dynamic.service'; export declare class EntityDynamicController { private readonly entityDynamicService; constructor(entityDynamicService: EntityDynamicService); createEntity(data: Record, entityType: string, req: Request & { user: any; }): Promise; updateEntity(id: number, data: Record, entityType: string, req: Request & { user: any; }): Promise; getEntity(id: number, entityType: string, req: Request & { user: any; }): Promise; getAttributesDropdownList(req: Request & { user: any; }, appcode?: string): Promise; getResolvedEntity(id: number, entityType: string, req: Request & { user: any; }): Promise; }