import { LifeCycleActions } from './life-cycle.actions'; export interface LifeCycleState { init: boolean; config: boolean; documentService: boolean; /** * true - user is authenticated * false - user is not authenticated * null - authenticated is unknown */ auth: boolean | null; stable: boolean; navigated: boolean; } export declare const LIFE_CYCLE_INIT: LifeCycleState; export declare function lifeCycleReducer(state: LifeCycleState, action: LifeCycleActions): LifeCycleState;