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