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