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