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