import { ListMasterService } from '../service/list-master.service'; import { ListMasterItemService } from '../service/list-master-item.service'; export declare class ListMasterController { private readonly service; private readonly listMasterItemService; constructor(service: ListMasterService, listMasterItemService: ListMasterItemService); getDropdownDataO(type: string, queryParams: Record, req: any): Promise; getDropdownDataPublic(type: string, queryParams: Record): Promise; getListSourceType(req: Request & { user: any; }, source: string): Promise; getListMasterItems(type: string, req: Request & { user: any; }, search?: string): Promise; getAllListMasters(req: Request & { user: any; }, search?: string): Promise; upsertListMasterItem(type: string, item: any, req: Request & { user: any; }): Promise; deleteListMasterItem(type: string, code: string): Promise; getDropdownData(entity_type: string, attribute_key: string, body: Record, req: any): Promise; getDropdownDataMS(data: { entity_type: string; attribute_key: string; loggedInUser: any; body: Record; }): Promise; }