import { StyleProp } from "react-native"; export interface BaseProps { errorMessage?: string | undefined ; errorVisibility?: boolean | undefined ; showErrorMessage?: boolean; label?: string; containerStyle?: StyleProp; labelStyle?: StyleProp; contentStyle?: StyleProp; disabled?: boolean; hideLabel?: boolean; assistiveText?: string; assistiveTextStyle?: StyleProp; testID?:string placeholder?: string; placeholderColor?:string; }