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