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