import { CommonProps, Refable } from "@trackunit/react-components"; import { HTMLAttributes, ReactElement } from "react"; export interface ResizeHandelProps extends CommonProps, HTMLAttributes, Refable { isResizing?: boolean; } /** * Component for a resizable handle element. * * @param {ResizeHandelProps} props - Props for the resizable handle. * @param {boolean} [props.isResizing=false] - Indicates whether the handle is in a resizing state. * @param {string} [props."data-testid"] - A data-testid attribute for testing purposes. * @param {string} [props.className] - Additional CSS classes to apply to the handle. * @returns {ReactElement} A React element representing the resizable handle. */ export declare const ResizeHandle: ({ isResizing, "data-testid": dataTestId, onMouseDown: onMouseDownHandler, className, ref, ...rest }: ResizeHandelProps) => ReactElement;