import { status } from '@synnaxlabs/client'; import { ReactElement } from 'react'; import { Icon } from '../../icon'; /** Props for {@link Indicator}. */ export interface IndicatorProps extends Icon.IconProps { variant?: status.Variant; /** Replaces the concentric glyph, tinted with the variant color. */ children?: ReactElement; } /** * The dot that carries a status variant's color. A loading variant spins instead, and * a child icon takes the color in place of the dot. */ export declare const Indicator: ({ variant, children, ...rest }: IndicatorProps) => ReactElement; //# sourceMappingURL=Indicator.d.ts.map