import { Subject } from 'rxjs'; import { ElementRef } from '@angular/core'; import { DropListRef } from '@angular/cdk/drag-drop'; export declare class PblDropListRef extends DropListRef { /** Emits right before dragging has started. */ beforeExit: Subject<{ item: import('./drag-ref').PblDragRef; }>; withElement(element: ElementRef | HTMLElement): this; dispose(): void; }