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