import { OverflowTooltipProps } from './OverflowTooltip'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export type OverflowCounterTagProps = NativeElementPropsWithoutKeyAndRef<'span'> & Pick & { disabled?: boolean; }; /** * Compound component for OverflowTooltip and Tag with overflow-counter type. */ declare const OverflowCounterTag: import("react").ForwardRefExoticComponent & Pick & { disabled?: boolean; } & import("react").RefAttributes>; export default OverflowCounterTag;