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