import React from 'react'; import { InputSearchProps } from './InputSearch'; interface TextBoxProps { tags?: React.ReactNode; inputProps?: InputSearchProps; readOnly?: boolean; disabled?: boolean; onBlur?: (event: React.FocusEvent) => void; onFocus?: (event: React.FocusEvent) => void; onChange?: (value: string, event: React.ChangeEvent) => void; inputValue?: string; inputRef?: React.Ref; editable?: boolean; multiple?: boolean; showTagList?: boolean; } declare const TextBox: React.ForwardRefExoticComponent>; export default TextBox;