import { DashboardService } from '../service/dashboard.service'; export declare class DashboardController { private readonly dashboardService; constructor(dashboardService: DashboardService); getDashboard(pageId: number, req: any): Promise<{ page_data: { page_sequence: number; applicable_type: string; applicable_id: string; is_hidden: boolean; mapped_entity_type: string; id: number; entity_type: string; name: string; status: string; parent_type: string; parent_id: number; code: string; created_by: number; created_date: Date; modified_by: number; modified_date: Date; enterprise_id: number; organization_id: number; appcode: string; level_id: string; level_type: string; }; layout_json: any; widget_json: {}; }>; getPages(mapped_entity_type: string, req: any): Promise; }