import React__default from 'react'; interface FormTagPickerProps { id?: string; name: string; label?: string; value: string[]; onChange: (values: string[]) => void; suggestions?: string[]; placeholder?: string; disabled?: boolean; required?: boolean; classNames?: { wrapper?: string; label?: string; input?: string; }; } declare function FormTagPicker({ id, name, label, value, onChange, suggestions, placeholder, disabled, required, classNames, }: FormTagPickerProps): React__default.JSX.Element; export { FormTagPicker, type FormTagPickerProps };