///
declare namespace BalEvents {
interface BalTimeInputCustomEvent extends CustomEvent {
detail: T;
target: HTMLBalTimeInputElement;
}
type BalTimeInputChangeDetail = string | undefined;
type BalTimeInputChange = BalTimeInputCustomEvent;
type BalTimeInputInputDetail = string | undefined;
type BalTimeInputInput = BalTimeInputCustomEvent;
type BalTimeInputBlurDetail = FocusEvent;
type BalTimeInputBlur = BalTimeInputCustomEvent;
type BalTimeInputKeyPressDetail = KeyboardEvent;
type BalTimeInputKeyPress = BalTimeInputCustomEvent;
type BalTimeInputFocusDetail = FocusEvent;
type BalTimeInputFocus = BalTimeInputCustomEvent;
type BalTimeInputClickDetail = MouseEvent;
type BalTimeInputClick = BalTimeInputCustomEvent;
}