import React from 'react'; import { TextInput, TextInputProperties } from 'react-native'; export interface TextInputProps extends TextInputProperties { focused?: boolean; } declare class Input extends React.Component { inputRef: TextInput | null; constructor(props: TextInputProps); UNSAFE_componentWillReceiveProps(nextProps: TextInputProps): void; componentDidMount(): void; componentDidUpdate(): void; focus: () => void; clear: () => void; render(): React.JSX.Element; } export default Input;