import React from 'react'; import type { DraggableData, DraggableEvent } from 'react-draggable'; import * as Draggable from 'react-draggable'; type Position = 'left' | 'right'; interface Props { position: Position; show: boolean; onStart: (e: DraggableEvent, data: DraggableData, position: Position) => void | false; onDrag: (e: DraggableEvent, data: DraggableData, position: Position) => void | false; onStop: (e: DraggableEvent, data: DraggableData, position: Position) => void | false; className?: string; offsetParent?: Draggable.DraggableCoreProps['offsetParent']; } export declare function ResizeButton({ className, position, show, offsetParent, onStart, onDrag, onStop, }: Props): React.JSX.Element; export {};