import { Store, StoreDef } from './store'; export declare const registry$: import("rxjs").Observable<{ type: 'add' | 'remove'; store: Store; }>; export declare function addStore(store: Store): void; export declare function removeStore(store: Store): void; export declare function getStore(name: string): Store | undefined; export declare function getRegistry(): Map>; export declare function getStoresSnapshot>(): T;