///
declare namespace BalProps {
type BalInputAutocorrect = 'on' | 'off';
type BalInputInputMode = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
type BalInputMask = 'contract-number' | 'claim-number' | 'offer-number' | 'be-enterprise-number' | 'be-iban';
type BalInputInputType = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'search' | 'tel' | 'text' | 'time' | 'url' | 'week';
type BalInputAutocomplete = 'on' | 'off' | 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix' | 'nickname' | 'email' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization' | 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'cc-name' | 'cc-given-name' | 'cc-additional-name' | 'cc-family-name' | 'cc-family-name' | 'cc-number' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-csc' | 'cc-type' | 'transaction-currency' | 'transaction-amount' | 'language' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'sex' | 'tel' | 'tel-country-code' | 'tel-national' | 'tel-area-code' | 'tel-local' | 'tel-extension' | 'impp' | 'url' | 'photo';
}
declare namespace BalEvents {
interface BalInputCustomEvent extends CustomEvent {
detail: T;
target: HTMLBalInputElement;
}
type BalInputInputDetail = string | undefined;
type BalInputInput = BalInputCustomEvent;
type BalInputChangeDetail = string | undefined;
type BalInputChange = BalInputCustomEvent;
type BalInputBlurDetail = FocusEvent;
type BalInputBlur = BalInputCustomEvent;
type BalInputKeyPressDetail = KeyboardEvent;
type BalInputKeyPress = BalInputCustomEvent;
type BalInputFocusDetail = FocusEvent;
type BalInputFocus = BalInputCustomEvent;
interface BalInputDateCustomEvent extends CustomEvent {
detail: T;
target: HTMLBalInputDateElement;
}
type BalInputDateInputDetail = string | undefined;
type BalInputDateInput = BalInputDateCustomEvent;
type BalInputDateChangeDetail = string | undefined;
type BalInputDateChange = BalInputDateCustomEvent;
type BalInputDateBlurDetail = FocusEvent;
type BalInputDateBlur = BalInputDateCustomEvent;
type BalInputDateKeyPressDetail = KeyboardEvent;
type BalInputDateKeyPress = BalInputDateCustomEvent;
type BalInputDateFocusDetail = FocusEvent;
type BalInputDateFocus = BalInputDateCustomEvent;
}