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