import * as React from 'react'; import { NativeSyntheticEvent, TextInputFocusEventData } from 'react-native'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; label?: string; placeholder?: string; helper?: string; style?: Style; labelStyle?: Style; inputStyle?: Style; placeholderStyle?: Style; helperStyle?: Style; iconStyle?: Style; onChangeText: (text: string) => void; value: string; inputType?: 'primary' | 'secondary'; helperType?: 'primary' | 'secondary'; invisibleIcon: string; visibleIcon: string; error?: string; errorStyle?: Style; onFocusBorderColor?: Style; onBlur?: (e: NativeSyntheticEvent) => void; }; declare const InputPassword: React.FC; export default InputPassword;