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