import type React from "react"; type Side = "left" | "right"; type TabScrollIndicatorProps = { onClick?: React.MouseEventHandler; side?: Side; width?: string | number; ariaLabelLeft?: string; ariaLabelRight?: string; }; declare function TabScrollIndicator({ side, width, ariaLabelLeft, ariaLabelRight, onClick, ...props }: TabScrollIndicatorProps): import("react/jsx-runtime").JSX.Element; export default TabScrollIndicator;