import React from 'react'; import type { Event } from '../../events/schema'; import type { StateStore } from '../../state/store'; export declare function ActivityFeed({ stateStore, runId, repoId, limit, events: providedEvents, loading: providedLoading, }: { stateStore: StateStore; runId: string; repoId?: string; limit?: number; events?: Event[]; loading?: boolean; }): React.ReactElement;