import { OnInit, ComponentRef, ElementRef, Renderer, EventEmitter, OnDestroy, AfterViewInit, ViewContainerRef } from '@angular/core'; import { GridStackItem } from './grid-stack-item.model'; export declare class GridStackItemComponent implements OnInit, OnDestroy, AfterViewInit { private el; private renderer; contentPlaceholder: ViewContainerRef; contentTemplate: string; option: GridStackItem; onGridConfigurationChanged: EventEmitter; contentComponentRef: ComponentRef; jGridRef: any; jWidgetRef: any; constructor(el: ElementRef, renderer: Renderer); readonly nativeElement: HTMLElement; ngOnInit(): void; UpdateWidget(item: GridStackItem): void; RenderWidget(item: GridStackItem): void; update(x: number, y: number, width: number, height: number): void; ngAfterViewInit(): void; ngOnDestroy(): void; }