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