import { ISubscribable } from './ISubscribable';
import { IDisposable } from '../Utilities';
export declare class BaseStore implements ISubscribable {
    private _callbacks;
    constructor();
    subscribe(onChange: () => void): IDisposable;
    protected emitChange(): void;
}
