import { Stream } from 'xstream'; export declare class Scope { handlers: Map>>; listeners: Map void>; constructor(); getSelectorHandlers(selector: string | symbol): Record>; getHandler(selector: string | symbol, evType: string): Stream; subscribe(selector: string | symbol, listener: () => void): () => void; }