///
declare namespace BalProps {
type BalNavbarInterface = 'app' | 'simple';
}
declare namespace BalEvents {
interface BalNavbarBrandCustomEvent extends CustomEvent {
detail: T;
target: HTMLBalNavbarBrandElement;
}
type BalNavbarBrandNavigationChangeDetail = MouseEvent;
type BalNavbarBrandNavigationChange = BalNavbarBrandCustomEvent;
type BalNavbarMenuWillAnimateDetail = boolean;
type BalNavbarMenuWillAnimate = BalNavbarBrandCustomEvent;
type BalNavbarMenuDidAnimateDetail = boolean;
type BalNavbarMenuDidAnimate = BalNavbarBrandCustomEvent;
}