/// <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;
