export declare const isEmail: (value: string) => boolean; type TagInputProps = { autofocus?: boolean; /** TagInput Placeholder */ placeholder: string; /** TagInput value and onChange handler */ input: { value?: string; onChange?: (value: string) => void; }; /** TagInput type of individual entries (HTML input types) */ type: string; /** A delimiter which decides when to separate string into tags */ separator?: string | RegExp | undefined; hasError?: boolean; customError?: (values?: any) => void; }; /** * TagInputComponent * Takes in a comma separated set of values (input.value prop) to display in tags * On addition or removal of tags, passes the comman separated string to input.onChange prop * @param props : TagInputProps */ declare function TagInputComponent(props: TagInputProps): JSX.Element; export default TagInputComponent;