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