UNPKG

@uiw/react-native

Version:
7 lines (6 loc) 247 B
/// <reference types="react" /> import { TextInputProps } from 'react-native'; declare const Input: ({ value, onChange, ...others }: TextInputProps & { onChange?: ((value: string) => void) | undefined; }) => JSX.Element; export default Input;