import { type ComponentProps } from 'react'; import type { BadgeHue } from './Badge'; type StatusHue = Exclude; /** * Colored dot for action badges * @param hue - Color of the dot */ export declare const StatusDot: ({ className, hue }: ComponentProps<"div"> & { hue: StatusHue; }) => import("react/jsx-runtime").JSX.Element; export {};