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