import * as React from "react"; export type TagInputProps = Omit, "onChange"> & { value?: string[]; defaultValue?: string[]; onValueChange?: (value: string[]) => void; placeholder?: string; disabled?: boolean; readOnly?: boolean; maxTags?: number; allowDuplicates?: boolean; separators?: string[]; normalizeTag?: (tag: string) => string; }; declare function TagInput({ value, defaultValue, onValueChange, placeholder, disabled, readOnly, maxTags, allowDuplicates, separators, normalizeTag, className, ...props }: TagInputProps): React.JSX.Element; export { TagInput };