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