import { LegacyRef } from 'react'; import { ColorValue, ImageSourcePropType, ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native'; import TextField, { TextFieldProps } from '../../packages/rn-material-ui-textfield'; export interface IInputStyles { color?: ColorValue; container?: StyleProp; input?: StyleProp; lineWidth?: number; activeLineWidth?: number; baseColor?: ColorValue; errorColor?: ColorValue; fieldWrapper?: StyleProp; showPasswordIcon?: StyleProp; placeholderColor?: ColorValue; } export interface IInputProps extends TextFieldProps { isSecure?: boolean; reference?: LegacyRef; id?: string; onTextChanged?: (key: string, value: string) => void; styles?: IInputStyles; isShowPasswordButtonVisible?: boolean; showPasswordImages?: { show: ImageSourcePropType; hide: ImageSourcePropType; }; } //# sourceMappingURL=types.d.ts.map