import type { Article } from '../types.js'; export interface Props { /** Article data to display */ article: Article; /** Show article excerpt/description */ showExcerpt?: boolean; /** Show publication date */ showDate?: boolean; /** Show author name */ showAuthor?: boolean; /** Show tags */ showTags?: boolean; } declare const ArticleCard: import("svelte").Component; type ArticleCard = ReturnType; export default ArticleCard; //# sourceMappingURL=ArticleCard.svelte.d.ts.map