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