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