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