import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * TagsField - free-form list of string tags. Type a value and press Enter (or * comma) to add it; click a tag's × to remove it. The stored value is a * string[]. Used for the `tags` field type. */ export declare function TagsField({ value, onChange, field, readonly, className, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;