import { Subject, Observable } from "rxjs";
export declare class NotifyService {
protected _notifySubject: Subject<Event>;
constructor();
notify(key: string, value: any): void;
get(key: string): Observable<any>;
}
interface Event {
key: string;
value: any;
}
export {};