import { ReactElement } from 'react'; import OverflowCounterTag, { OverflowCounterTagProps } from '../OverflowTooltip/OverflowCounterTag'; import Tag, { TagProps } from '../Tag'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { TransitionImplementationChildProps } from '../Transition'; type TagElement = ReactElement; type OverflowCounterTagElement = ReactElement; type TagGroupChild = TagElement | OverflowCounterTagElement; export type TagGroupProps = Omit, 'children'> & { children: TagGroupChild | TagGroupChild[]; transition?: 'fade' | 'none'; }; declare const TagGroup: import("react").ForwardRefExoticComponent, "children"> & { children: TagGroupChild | TagGroupChild[]; transition?: "fade" | "none"; } & import("react").RefAttributes>; export default TagGroup;