import React from "react";
interface ScrollAreaControlProps {
position: "top" | "right" | "bottom" | "left";
direction: "both" | "col" | "row";
incrementValue?: number;
}
declare const ScrollAreaControl: React.FC<ScrollAreaControlProps>;
export default ScrollAreaControl;