import { ViewStyle } from "react-native/types"

export type Props = {
    emailValue: string,
    placeholder:string,
    placeholderTextColor?:string,
    emailTextInputContainerStyle?: ViewStyle ,
    onChangeEmailText?:(value:string)=>void
    BtnText:string,
    OTP: string

}
