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