import React from 'react';
import './TextInput.style.scss';
import { Props } from './TextInput.types';
/**
 * Short text input
 */
declare const _TextInput: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default _TextInput;
