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