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