import * as React from 'react'; interface TagPickerProps { id?: string; value: string[]; onChange: (values: string[]) => void; suggestions?: string[]; placeholder?: string; disabled?: boolean; className?: string; } declare function TagPicker({ id, value, onChange, suggestions, placeholder, disabled, className, }: TagPickerProps): React.JSX.Element; export { TagPicker, type TagPickerProps };