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