import { IAbsoluteProps } from '../Absolute'; declare const CountIndicator: ({ count, color, ...props }: ICountIndicatorProps) => JSX.Element | null; interface ICountIndicatorProps extends IAbsoluteProps { readonly count: number; readonly color?: string; } export default CountIndicator;