import { Subject, Observable } from 'rxjs'; import type { AppState, Action } from '../types'; export declare const actions$: Subject<{ action: Action; state: AppState; }>; export declare function dispatch(action: Action): void; declare function select(): Observable; declare function select(stateKey: T): Observable; declare function get(): AppState; export declare const state: { select: typeof select; get: typeof get; }; export {};