import { View, ViewConfig } from "./View"; export interface SubscribableViewConfig extends ViewConfig { async?: boolean; } export declare class SubscribableView extends View { subscribers?: any; changes: string[]; async: boolean; scheduled: boolean; constructor(config?: SubscribableViewConfig); subscribe(callback: () => void): any; unsubscribeAll(): void; doNotify(path: string): void; silently(callback: (store?: View) => void): boolean; } //# sourceMappingURL=SubscribableView.d.ts.map