import React from 'react';
import { InputProps } from './Input.types';
/**
 * Primary UI component for user interaction
 * If value is set then treat as controlled component
 */
declare const Input: React.FunctionComponent<InputProps>;
export default Input;
