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