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