interface Project { id: string; name: string; description: string; members: number; tasks: number; status: 'active' | 'completed' | 'on-hold'; tags?: string[]; image?: string; } interface Props { columns?: 2 | 3; projects?: Project[]; } declare const ProjectsGrid: import("svelte").Component; type ProjectsGrid = ReturnType; export default ProjectsGrid;