import type { Component } from 'svelte'; interface ActivityItem { id: string; type: 'posted' | 'commented' | 'joined' | 'created' | 'starred'; user: string; avatar?: string; content?: string; target?: string; timestamp: string; } interface Props { activities?: ActivityItem[]; } declare const ActivityTimeline: Component; type ActivityTimeline = ReturnType; export default ActivityTimeline;