import React from 'react';
export type StatusType = 'friendly' | 'hostile' | 'neutral' | 'unknown';
export type StatusBadgeSize = 'small' | 'medium' | 'large';
export type StatusBadgeVariant = 'dot' | 'background';
export interface StatusBadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
    status: StatusType;
    text?: string;
    size?: StatusBadgeSize;
    variant?: StatusBadgeVariant;
    className?: string;
}
