/// import { TagColor } from "@easyv/dtable-types/output/Color"; interface Props { id: string; focused?: boolean; configurable?: boolean; color?: TagColor; name: string; onSelect: () => void; onMouseEnter: (e: any) => void; onChange: (v: { color?: TagColor; name?: string; }) => void; } declare function Comp({ configurable, color, id, onChange, onSelect, focused, name, onMouseEnter, }: Props): JSX.Element; export default Comp;