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