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