import React from "react"; import { type IndicatorColor } from "./Indicator.types"; import { type VibeComponentProps } from "../../../types"; export interface IndicatorProps extends VibeComponentProps { /** * The color of the indicator. */ color?: IndicatorColor; } declare const Indicator: ({ color, className, id, "data-testid": dataTestId }: IndicatorProps) => React.JSX.Element; export default Indicator;