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