import type { Components, JSX } from "../types/components";

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