type Callback<T> = (value: T) => void;
export declare class ListenerManager<T> {
    private listeners;
    subscribe(callback: Callback<T>): () => void;
    notify(value: T): void;
}
export {};
//# sourceMappingURL=listenerManager.d.ts.map