import * as react from 'react'; import { HTMLAttributes } from 'react'; type Status = 'online' | 'offline' | 'warning' | 'idle' | 'info'; interface StatusDotProps extends HTMLAttributes { status?: Status; label?: string; /** Disable the pulsing animation */ noPulse?: boolean; } declare const StatusDot: react.ForwardRefExoticComponent>; export { type Status, StatusDot, type StatusDotProps };