import type { Data } from '@dnd-kit/abstract'; import type { DraggableInput } from '@dnd-kit/dom'; import { Draggable } from '@dnd-kit/dom'; export type CreateDraggableInput = Omit, 'handle' | 'element' | 'register'>; export declare function createDraggable(input: CreateDraggableInput): { readonly draggable: Draggable; readonly isDragging: boolean; readonly isDropping: boolean; readonly isDragSource: boolean; attach(node: HTMLElement): () => void; attachHandle(node: HTMLElement): () => void; }; //# sourceMappingURL=createDraggable.svelte.d.ts.map