import React from 'react';
import { TextInputProps } from './TextInput.types';
/**
 * Standard text input component
 */
declare const TextInput: React.FunctionComponent<TextInputProps>;
export default TextInput;
