import { type FocusEvent } from 'react'; interface InputTagProps { placeholder?: string; tags: string[]; onBlur?: (e: FocusEvent) => void; setTags: (value: any[]) => void; } declare const InputTags: ({ placeholder, onBlur, tags, setTags }: InputTagProps) => import("react/jsx-runtime").JSX.Element; export default InputTags;