import React from 'react'; import { TextInput } from 'react-native'; import { ManualInputDefault } from '../types'; declare type Props = { defaultValue: ManualInputDefault; onInputChange: (text: string) => void; maxLength?: number; }; export declare type FocusHandle = { focus: () => void; }; declare const Input: React.ForwardRefExoticComponent>; export default Input;