/** * Activity Panel - Unified view of queries, mutations, and actions * with focused list-first debugging UX */ import type { EventStore } from "../store/event-store"; interface ActivityPanelProps { eventStore: EventStore; panelConnectionState?: { waitingForConnection: boolean; needsReload: boolean; onReload: () => void; agentAttached?: boolean; socketSeen?: boolean; captureLive?: boolean; }; } export declare function ActivityPanel({ eventStore, panelConnectionState }: ActivityPanelProps): import("react/jsx-runtime").JSX.Element; export {};