/** React */
import { HtmlHTMLAttributes } from "react";
/** CSS */
import "./index.css";
/** Props */
type Props = HtmlHTMLAttributes & {
indexPosition: number;
isPlay: boolean;
handlePlay: () => void;
handleStop: () => void;
};
export declare function RangeControls({ indexPosition, isPlay, handlePlay, handleStop, }: Props): import("react/jsx-runtime").JSX.Element;
export {};