import { BadgeStatus } from '../Badge';
export type StatusDotSize = "xs" | "sm" | "md";
export type StatusDotProps = {
    status: BadgeStatus;
    size?: StatusDotSize;
    label?: string;
    title?: string;
    className?: string;
};
export declare function StatusDot({ status, size, label, title, className }: StatusDotProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=StatusDot.d.ts.map