/// import { StyleProp } from 'react-native'; export default function ({ disabled, placeholder, type, style, onChangeText, }: { disabled?: boolean; placeholder?: string; type?: string; style?: StyleProp; onChangeText?: (s: string) => void; }): JSX.Element;