import { ActivityData } from '../../types/processTracker';
interface ActivityFeedProps {
    data: ActivityData | null;
    loading: boolean;
    error: string | null;
    maxItems?: number;
}
export default function ActivityFeed({ data, loading, error, maxItems }: ActivityFeedProps): import("react/jsx-runtime").JSX.Element;
export {};
