import { OnInit, ElementRef } from '@angular/core'; import { RaDashboardService } from './../ra.dashboard.service'; export declare class RAWidgetContainer implements OnInit { private dashboardService; constructor(dashboardService: RaDashboardService); ctlWidget: ElementRef; widgetId: number; globalFilter: any; data: any; ngOnInit(): void; editWidget(): void; deleteWidget(): void; moveWidget(): void; copyWidget(): void; collapse(): void; configChangeEventHandler(e: any): void; globalFilterChangeEventHandler(e: any): void; loadWidget(data: any): void; }