import * as React from "react"; export interface ITagInput { focus: () => void; blur: () => void; select: () => void; } export interface ITagInputProps extends React.HTMLAttributes { suggestions?: string[]; onTagsChange?: (tags: string[]) => void; value?: string[]; } export declare const TagInput: React.ForwardRefExoticComponent>;