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