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