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