import * as React from 'react'; import { ImageSourcePropType, StyleProp } from 'react-native'; import { IInputFieldViewProps } from '@steroidsjs/core/ui/form/InputField/InputField'; type KeyboardTypes = 'default' | 'number-pad' | 'decimal-pad' | 'numeric' | 'email-address' | 'phone-pad'; type AutoCompleteTypes = 'off' | 'username' | 'password' | 'email' | 'name' | 'tel' | 'street-address' | 'postal-code' | 'cc-number' | 'cc-csc' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year'; interface IRNInputFieldViewProps extends IInputFieldViewProps { keyboardType?: KeyboardTypes; autoCompleteType?: AutoCompleteTypes; size?: Size; onBlur?: any; onFocus?: any; color?: string; prefixElement?: ImageSourcePropType | React.ReactNode; suffixElement?: ImageSourcePropType | React.ReactNode; style?: StyleProp; multiline?: number | false; editable?: boolean; value?: string | number; autoFocus: boolean; inputProps: any; } declare const InputFieldView: React.FunctionComponent; export default InputFieldView;