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