import React from 'react'; export interface BadgeProps { children?: React.ReactNode; /** * Option to fit badge width to its parent width */ block?: boolean; /** * Set the variants of badge */ variant?: 'solid' | 'danger' | 'success' | 'warning'; /** * Set the couting number or text of badge */ count?: string; } export declare const Badge: React.FC;