import { ElementRef, EventEmitter } from '@angular/core'; import { WidgetConfig } from '../../models/WidgetConfig.model'; import { GridRectangle } from '../../models/GridRectangle.model'; export declare class NgxWidgetComponent { private elRef; _position: GridRectangle; position: GridRectangle; positionChange: EventEmitter; movable: boolean; _resizable: boolean; resizable: boolean; allDirections: any; _resizeDirections: string[]; isTopResizable: boolean; isRightResizable: boolean; isBottomResizable: boolean; isLeftResizable: boolean; isTopRightResizable: boolean; isTopLeftResizable: boolean; isBottomRightResizable: boolean; isBottomLeftResizable: boolean; resizeDirections: string[]; widgetConfig: WidgetConfig; constructor(elRef: ElementRef); setResizeDirections(): void; getConfig(): WidgetConfig; getEl(): ElementRef; }