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