interface Category { name: string; slug: string; count: number; } interface Props { categories: Category[]; } declare const CategorySection: import("svelte").Component; type CategorySection = ReturnType; export default CategorySection;