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