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