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