import { AuthLoginState } from './login.reducer'; import { AuthSignUpState } from './sign-up.reducer'; import { User } from '@digitaix/types'; export interface AuthState { user: User | null | false; login: AuthLoginState; signUp: AuthSignUpState; } export declare const authInitialState: AuthState; export declare function authReducer(state: AuthState, action: any): AuthState;