import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { NgxPackeryOptions } from './ngx-packery-options'; import { NgxPackeryService } from './ngx-packery.service'; export declare class NgxPackeryComponent implements OnInit, OnDestroy { private el; private pckryService; layoutComplete: EventEmitter; dragItemPositioned: EventEmitter; fitComplete: EventEmitter; removeComplete: EventEmitter; options: NgxPackeryOptions; private unsubscribe$; private pckry; constructor(el: ElementRef, pckryService: NgxPackeryService); ngOnInit(): void; ngOnDestroy(): void; }