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