import * as react from 'react'; interface TagInputProps { value?: string[]; defaultValue?: string[]; onChange?: (tags: string[]) => void; label?: string; error?: string; placeholder?: string; /** Maximum number of tags allowed */ max?: number; className?: string; disabled?: boolean; required?: boolean; } declare function TagInput({ value: valueProp, defaultValue, onChange, label, error, placeholder, max, className, disabled, required, }: TagInputProps): react.JSX.Element; declare namespace TagInput { var displayName: string; } export { TagInput, type TagInputProps };