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