import { RootStoreConfig } from '@ngrx/store';
import { StoreDevtoolsConfig } from '@ngrx/store-devtools';
/**
 * ** Configuration for NgRx Store Devtools.
 */
export declare const NGRX_STORE_DEVTOOLS_CONFIG: StoreDevtoolsConfig;
/**
 * ** Configuration for NgRx Store.
 */
export declare const NGRX_STORE_CONFIG: RootStoreConfig<any>;
/**
 * ** Config for Taurus impl of NgRx.
 */
export interface TaurusNgRxConfig {
    /**
     * ** StoreDevTools configuration replica.
     * <p>see {@link https://ngrx.io/guide/store-devtools/config}</p>
     */
    storeDevToolsConfig?: StoreDevtoolsConfig;
}
