import React from 'react'; import type { IndicatorProps } from './types'; /** * Indicator: a small indicator positioned on the corner of a parent container. * Usage: Wrap target with a relative container and place as a sibling. * * Pass `label` to render text content (e.g. a count); the dot expands to a pill * so multi-digit values fit. For custom content (icon, status dot variations), * use `children` instead. */ export declare function Indicator({ size, color, borderColor, borderWidth, placement, offset, style, children, label, labelProps, invisible, }: IndicatorProps): React.JSX.Element | null;