import type { Components, JSX } from "../types/components";

interface BmMenu extends Components.BmMenu, HTMLElement {}
export const BmMenu: {
    prototype: BmMenu;
    new (): BmMenu;
};
/**
 * Used to define this component and all nested components recursively.
 */
export const defineCustomElement: () => void;
