export type StatusDotStatus = 'success' | 'warning' | 'error' | 'info' | 'default' | 'custom';
export type StatusDotSize = 'sm' | 'md' | 'lg';
export interface StatusDotProps {
    status?: StatusDotStatus;
    size?: StatusDotSize;
    pulse?: boolean;
    color?: string;
    label?: string;
    class?: string;
}
//# sourceMappingURL=types.d.ts.map