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

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