import type { DragDropOptions } from '../types/index.js';
export declare function droppable<T>(node: HTMLElement, options: DragDropOptions<T>): {
    update(newOptions: DragDropOptions<T>): void;
    destroy(): void;
};
