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