import React from 'react'; interface BadgeProps { children: React.ReactChild; count: number; overflowCount: number; dot: boolean; color: string; } export declare const Badge: ({ children, count, dot, overflowCount }: BadgeProps) => JSX.Element; export {};