import { BehaviorSubject } from 'rxjs'; import { Action, AppState } from './reducer'; export declare const state$: BehaviorSubject; export declare const getState: () => AppState; export declare const dispatch: (action: Action) => void;