import React from 'react'; import { TextInput } from 'react-native'; export declare type TextInputProps = React.ComponentPropsWithRef & { defaultValue: string; numInputs: number; inputCellLength?: number; handleTextChange: Function; keyboardType?: string; error?: boolean; }; export declare const TextFieldDigit: React.ForwardRefExoticComponent & React.RefAttributes>;