import { Environment } from '@onepoint-yap/dashboard'; export declare const environmentFeatureKey = "@yap/admin/environment"; export interface EnvironmentState { environments: Environment[]; loading: boolean; currentEnv?: Environment; } export declare const initialEnvironmentState: EnvironmentState; export declare const environmentReducer: import("@ngrx/store").ActionReducer;