import React from 'react'; import './Tag.css'; type ITag = { tags: string[]; isDisabled?: boolean; onChange?: (tagToUpdate: string[]) => void; label?: string; testId?: string; id?: string; version?: "v2"; }; export declare const Tag: (props: ITag) => React.JSX.Element; export declare const Tags: any; declare const _default: any; export default _default;