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