/// declare namespace BalEvents { interface BalDataValueCustomEvent extends CustomEvent { detail: T; target: HTMLBalDataValueElement; } type BalDataValueClickDetail = MouseEvent; type BalDataValueClick = BalDataValueCustomEvent; type BalDataValueFocusDetail = void; type BalDataValueFocus = BalDataValueCustomEvent; type BalDataValueBlurDetail = void; type BalDataValueBlur = BalDataValueCustomEvent; }