import type { Article } from '../types.js'; export interface Props { /** Array of articles to display */ articles: Article[]; /** Number of columns in grid (or 'auto') */ columns?: number | 'auto'; /** Show article excerpts */ showExcerpt?: boolean; /** Show publication dates */ showDate?: boolean; /** Show author names */ showAuthor?: boolean; /** Show tags */ showTags?: boolean; /** Message when no articles */ emptyMessage?: string; } declare const ArticleList: import("svelte").Component; type ArticleList = ReturnType; export default ArticleList; //# sourceMappingURL=ArticleList.svelte.d.ts.map