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