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