import type React from "react"; interface TabScrollIndicatorsProps { tabRefs?: Array; tabContainerRef?: React.RefObject; indicatorWidth?: number; children: (handlers: { handleScroll: () => void; handleResize: () => void; }) => React.ReactNode; } declare function TabScrollIndicators({ tabRefs, tabContainerRef, indicatorWidth, children }: TabScrollIndicatorsProps): import("react/jsx-runtime").JSX.Element; export default TabScrollIndicators;