import { ITokens } from './localStorage'; export interface IAuthState
{ initialized: boolean; principal: P | null; tokens: ITokens | null; } export declare function authReducer
(state: IAuthState
, action: any): IAuthState
;