import React, { InputHTMLAttributes } from "react";
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
  children?: React.ReactNode;
  /**
   * Whether this input has errors.
   */
  hasErrors?: boolean;
  /**
   * Whether this input should be treated as containing links
   */
  isLinkField?: boolean;
}
declare const Input: React.FC<InputProps>;
export default Input;
