import { Action } from '@ngrx/store'; import { ConfigState } from '@digitaix/types'; export declare enum ConfigActionTypes { SetConfig = "@digitaix/core/config/SET_CONFIG", SetEnvironment = "@digitaix/core/config/SET_ENVIRONMENT" } export declare class SetEnvironment implements Action { environment: E; readonly type = ConfigActionTypes.SetEnvironment; constructor(environment: E); } export declare class SetConfig implements Action { config: ConfigState; readonly type = ConfigActionTypes.SetConfig; constructor(config: ConfigState); } export declare type ConfigActions = SetConfig | SetEnvironment;