import type { Components, JSX } from "../types/components";

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