import type { FunctionComponent } from 'react'; import { ButtonProps } from '@patternfly/react-core'; /** extends ButtonProps */ export interface TagCountProps extends ButtonProps { /** Count to display in tag count component */ count?: number; /** Additional classes added to the tag count component */ className?: string; /** Icon size */ iconSize?: 'sm' | 'md' | 'lg' | 'xl'; /** Custom OUIA ID */ ouiaId?: string | number; } declare const TagCount: FunctionComponent; export default TagCount;