import { WithSupportProps } from '@snack-uikit/utils'; import { Size, TagRowItemInner } from '../../types'; type TagRowTruncatedProps = WithSupportProps<{ items: TagRowItemInner[]; rowLimit: number; moreButtonLabel?: string; size: Size; className?: string; onItemRemove?(item: string): void; }>; declare function TagRowTruncatedInner({ items, rowLimit, size, moreButtonLabel, className, onItemRemove, ...rest }: TagRowTruncatedProps): import("react/jsx-runtime").JSX.Element; export declare const TagRowTruncated: import("react").MemoExoticComponent; export {};