/** React */
import { HtmlHTMLAttributes } from "react";
/** CSS */
import "./index.css";
/** Props */
type Props = HtmlHTMLAttributes & {
thumbPosition?: string;
handleOverContent: (value: string | number | undefined) => void;
handleDownThumb: () => void;
};
export declare function RangeThumb({ thumbPosition, handleOverContent, handleDownThumb }: Props): import("react/jsx-runtime").JSX.Element;
export {};