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