///
declare namespace BalEvents {
interface BalInputStepperCustomEvent extends CustomEvent {
detail: T;
target: HTMLBalInputStepperElement;
}
type BalInputStepperChangeDetail = number | undefined;
type BalInputStepperChange = BalInputStepperCustomEvent;
type BalInputStepperInputDetail = number | undefined;
type BalInputStepperInput = BalInputStepperCustomEvent;
type BalInputStepperIncreaseDetail = number | undefined;
type BalInputStepperIncrease = BalInputStepperCustomEvent;
type BalInputStepperDecreaseDetail = number | undefined;
type BalInputStepperDecrease = BalInputStepperCustomEvent;
type BalInputStepperBlurDetail = FocusEvent;
type BalInputStepperBlur = BalInputStepperCustomEvent;
type BalInputStepperFocusDetail = FocusEvent;
type BalInputStepperFocus = BalInputStepperCustomEvent;
}