/// import { TextInputProps } from 'react-native'; export interface InputProps extends TextInputProps { label?: string; error?: string; } export declare const Input: ({ label, error, onFocus, onBlur, ...props }: InputProps) => JSX.Element;