import React from 'react';
import { InputType } from './types';
/**
 *Component for test input
 *
 * @param {*} {
 *   placeholder = 'Enter the value',
 *   label,
 *   vertical = false,
 *   onChange = () => null,
 *   onSubmit = () => null,
 *   addClass = {},
 * }
 * @return {*}  {JSX.Element}
 */
declare const TextInput: React.FC<InputType>;
export default TextInput;
