import { MonitorBase } from'./monitor-base';
/**
* The monitor available inside {@link DragLayer#listen}.
*/exportinterfaceDragLayerMonitor<Item = any> extendsMonitorBase<Item> {
/** `true` if there is a drag operation in progress, `false` otherwise. */isDragging(): boolean;
}