import React from 'react'; import { TextInputProps } from 'react-native'; interface Props extends TextInputProps { onRef?: any; decoration?: string; placeholderTextColor?: string; isScaled?: boolean; minHeight?: number; maxHeight?: number; } declare const ScalableTextInput: React.FC; export default ScalableTextInput;