import { FC, HTMLAttributes } from 'react'; export type SegmentedControlIndicatorProps = HTMLAttributes; /** * SegmentedControlIndicator * * A visual indicator that highlights the currently selected segment * within a `SegmentedControl`. * * The indicator is typically rendered as a movable "thumb" or background * element that animates between segments */ export declare const SegmentedControlIndicator: FC;