import './TagEditor.css'; export type TagEditorProps = { tags: string[]; label?: string; onChange: (tagToUpdate: string[]) => any; isSortable?: boolean; placeholder?: string; testId?: string; error?: boolean; id?: string; version?: 'v2'; customKeyDown?: (event: any) => any; }; export declare const EditableTags: any; declare const _default: any; export default _default;