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