/** React */ import { HtmlHTMLAttributes } from "react"; /** CSS */ import "./index.css"; /** Props */ type Props = HtmlHTMLAttributes & { period?: number; values: string[] | number[]; allPositions?: number[]; handlePosition: (pixelPosition: number, thumbPosition: number, index: number, isHandleSelected?: boolean) => void; handleOverContent: (value: string | number | undefined) => void; handleOutContent: () => void; over: string | number | undefined; }; export declare function RangeContent({ period, values, allPositions, handlePosition, handleOverContent, handleOutContent, over, }: Props): import("react/jsx-runtime").JSX.Element[]; export {};