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