import { DragSourceSpec } from './types'; interface AttachResult { detach(): void; } export declare function attachHtml5Source(node: HTMLElement, getSpec: () => DragSourceSpec, onStart: () => void, onEnd: () => void): AttachResult; export declare function installDocumentDragListeners(): () => void; export {};