import { Action } from "@ngrx/store"; import { ILoadingState } from "../state/loading.state"; export declare const loadingReducer: import("@ngrx/store").ActionReducer<{ hidden: boolean; }, Action>; export declare function loadingReducers(state: ILoadingState, action: Action): { hidden: boolean; };