import { RefObject } from 'react'; import { Delta, LayerId } from '../types'; export type DragCallbackData = { controlBox?: Delta; layers: Record; }; export declare const useDragLayer: ({ frameRef, pageListRef, }: { frameRef: RefObject; pageListRef: RefObject; }) => { onDragStart: (e: TouchEvent | MouseEvent) => void; };