import React, { ReactElement } from 'react'; import { TextInputProps, ViewStyle } from 'react-native'; import { CountryCode } from '../types'; interface SmartFormFieldProps extends Omit { name: string; placeholder?: string; style?: any; errorStyle?: any; label?: string; labelStyle?: any; leftIcon?: ReactElement | (() => ReactElement); rightIcon?: ReactElement | (() => ReactElement); onLeftIconPress?: () => void; onRightIconPress?: () => void; leftIconStyle?: ViewStyle; rightIconStyle?: ViewStyle; inputContainerStyle?: ViewStyle; countryCode?: CountryCode; } export declare const SmartFormField: React.FC; export {};