import React from 'react'; import './TagAsSelect.css'; interface ITagList { label: string | React.ReactNode; value?: string; tooltipContent?: string; readonly?: boolean; readonlyTooltip?: string; } interface ITagAsSelect { tags: Array; updateTag: (tagToUpdate: string[]) => void; openModalCb: (callback: any) => any; showCount: boolean; showEmptyState: boolean; placeholder?: string; showSingleItem?: boolean; error?: Boolean; width?: string; seeMoreCount?: number; selectText?: string; tagName?: string; showTooltip?: boolean; maxCount?: number; testId?: string; version?: "v2"; readonly?: boolean; tooltipContentOnCancel?: string; isCancelDisabled?: boolean; } declare function TagAsSelect(props: ITagAsSelect): React.JSX.Element; export default TagAsSelect;