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