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