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