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