import React from 'react'; import type { Colors } from '../types'; interface IconWithCountsProps { _modifierClass?: string; 'aria-describedby'?: string; 'aria-hidden'?: boolean; 'aria-label'?: string; 'aria-labelledby'?: string; color?: Colors; id?: string; count?: string | number; icon: React.ReactNode; } export declare function IconWithCount({ _modifierClass, 'aria-describedby': ariaDescribedby, 'aria-hidden': ariaHidden, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, color, id, count, icon }: IconWithCountsProps): React.JSX.Element; export {};