import { Ref } from "vue"; export interface DraggableSession { domId: string; top: Ref; left: Ref; getCoordsCb: () => { topRef: Ref; leftRef: Ref; }; getLocString: () => string; } export declare const draggableSession: (domId: string, cssClass?: string) => DraggableSession;