/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { DragAndDropService } from './drag-and-drop.service'; import { DragAndDropContext } from './context-types'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class DropTargetDirective implements OnInit, OnDestroy { element: ElementRef; private service; context: DragAndDropContext; enter: EventEmitter; leave: EventEmitter; drop: EventEmitter; private subscriptions; constructor(element: ElementRef, service: DragAndDropService); ngOnInit(): void; ngOnDestroy(): void; private eventArgs; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }