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