import { ReactNode, ReactElement } from 'react'; import { IconName } from '../Icon'; export interface CountProps { children: ReactNode; /** * If it is number, just input the number value. If icon, just input name of icon (corresponding to Icon component in hero-design). */ content: number | IconName; /** * Visual intent color to apply to count badge. */ intent?: 'success' | 'primary' | 'warning' | 'danger' | 'error'; } declare const Count: ({ children, content, intent, }: CountProps) => ReactElement; export default Count;