import type { EditorInt } from "./Editor.js"; export declare const IN_RESIZE_CLASSNAME = "in-resize"; export type HorizontalDragProps = { leftElRef: React.RefObject; rightElRef: React.RefObject; wrapperRef: React.RefObject; editor: EditorInt; onEndMove?: (right: HTMLDivElement | null, left: HTMLDivElement | null) => any; }; declare const HorizontalDragWrapper: React.FC; export { HorizontalDragWrapper as HorizontalDrag };