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