import * as React from 'react';
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
  /** Uppercase field label rendered above */
  label?: string;
  /** Error message; turns the border red */
  error?: string;
}
export declare function Input(props: InputProps): JSX.Element;
