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

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