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