view : List (Attribute msg) -> { value : Value, onInput : Value -> msg } -> Html msg
init : Maybe Basics.Int -> Value
toInt : Value -> Basics.Int
toString : Value -> String
placeholder : String -> Attribute msg
mask : (String -> String) -> Attribute msg
prefix : List (Html msg) -> Attribute msg
suffix : List (Html msg) -> Attribute msg
disabled : Basics.Bool -> Attribute msg
readOnly : Basics.Bool -> Attribute msg
required : Basics.Bool -> Attribute msg
min : Basics.Int -> Attribute msg
max : Basics.Int -> Attribute msg
step : Basics.Int -> Attribute msg
validation : (Basics.Int -> String -> Maybe String) -> Attribute msg
viewWithValidation : List (Attribute msg) -> { value : Value, onInput : Result (List Error) Basics.Int -> Value -> msg } -> Html msg
errorToString : Error -> String
onEnter : msg -> Attribute msg
onFocus : msg -> Attribute msg
onBlur : msg -> Attribute msg
htmlAttrs : List (Html.Attribute msg) -> Attribute msg
noAttr : Attribute msg