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