export type DragHandleSize = 'sm' | 'md' | 'lg'; export type DragHandleOrientation = 'vertical' | 'horizontal'; interface DragHandleProps { size?: DragHandleSize; orientation?: DragHandleOrientation; disabled?: boolean; label?: string; class?: string; } declare const DragHandle: import("svelte").Component; type DragHandle = ReturnType; export default DragHandle;