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