import { ActivityLogService } from '../service/activity-log.service'; export declare class ActivityLogController { private readonly activityLogService; constructor(activityLogService: ActivityLogService); getAllActivityLog(req: Request & { user: any; }, mapped_entity_type: string, mapped_entity_id: string, category: string): Promise<{ category: string; created_date: string | null; mapped_entity_type: string; mapped_entity_id: string; title: string; description: string; action: string; icon: string; color: string; additional_info_1: string; additional_info_2: string; additional_info_3: string; id: number; entity_type: string; name: string; status: string; parent_type: string; parent_id: number; code: string; created_by: number; modified_by: number; modified_date: Date; enterprise_id: number; organization_id: number; appcode: string; level_id: string; level_type: string; }[]>; getAllActivityCategory(req: Request & { user: any; }, mapped_entity_type: string, mapped_entity_id: string): Promise<{ label: any; value: any; }[]>; }