export type DragModalOptions = { getModal: () => HTMLElement; }; declare function dragModal(opts: DragModalOptions): Promise; export declare function useDrag(): { dragModal: typeof dragModal; }; export {};