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

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