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