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