import type { CoreTopics, EventBus, Unsubscribe } from "@claude-in-mobile/plugin-api"; export declare class InMemoryEventBus implements EventBus { private readonly handlers; emit(topic: T, payload: CoreTopics[T]): void; on(topic: T, handler: (payload: CoreTopics[T]) => void): Unsubscribe; clear(): void; } //# sourceMappingURL=eventbus.d.ts.map