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