import { FC } from 'react';
export interface BrushHandleProps {
    /**
     * Height of the handle. Set internally by the parent component.
     */
    height: number;
    /**
     * Fires when the handle is dragged. `deltaX` is the change in x position.
     */
    onHandleDrag: (deltaX: number) => void;
}
export declare const BrushHandle: FC<BrushHandleProps>;
