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