/// declare namespace BalEvents { interface BalNumberInputCustomEvent extends CustomEvent { detail: T; target: HTMLBalNumberInputElement; } type BalNumberInputChangeDetail = number | undefined; type BalNumberInputChange = BalNumberInputCustomEvent; type BalNumberInputInputDetail = number | undefined; type BalNumberInputInput = BalNumberInputCustomEvent; type BalNumberInputBlurDetail = FocusEvent; type BalNumberInputBlur = BalNumberInputCustomEvent; type BalNumberInputKeyPressDetail = KeyboardEvent; type BalNumberInputKeyPress = BalNumberInputCustomEvent; type BalNumberInputFocusDetail = FocusEvent; type BalNumberInputFocus = BalNumberInputCustomEvent; }