import { Response } from 'express'; import { ViewMasterService } from '../service/view-master.service'; export declare class ViewMasterController { private readonly viewMaster; constructor(viewMaster: ViewMasterService); getEntityJsonByType(entityType: string, type: string, code: string, res: Response, req: Request & { user: any; }): Promise>>; getDropdownData(req: Request & { user: any; }, query: Record, res: Response): Promise>>; }