import { AuthUser } from '../../models/auth-user'; import { AuthActions } from "../actions/auth.actions"; export interface AuthState { authUser: AuthUser | undefined; } export declare const initialState: AuthState; export declare function authReducer(state: AuthState, action: AuthActions): AuthState;