import { IStateBinder, IStore } from '../api/PluginModel'; /** @hidden * Intermediator object between the React View and state "owner". * Stores state internally to allow arbitrary initialization order and even viewless operation. */ export declare class ReactStateBinder implements IStateBinder { constructor(initialStore: IStore); private _view; private _store; private _unsubscribe; /** Gets the current store */ get store(): IStore; private handleStoreUpdate; bind(store: IStore): void; /** Exposes props for component view (dispatch and ref). * Usage: render(, host("gc-errorpanel")); */ get connect(): { dispatch: (msg: TMessage) => void; ref: (c: any) => void; }; dispatch: (msg: TMessage) => void; bindView: (c: any) => void; }