/** * Subscriptions Panel - Shows active query subscriptions */ import type { EventStore } from "../store/event-store"; interface SubscriptionsPanelProps { eventStore: EventStore; } export declare function SubscriptionsPanel({ eventStore }: SubscriptionsPanelProps): import("react/jsx-runtime").JSX.Element; export {};