import { IAuthConfig, IAuthRoute } from "./interfaces"; export declare enum TokenStorage { SESSION_STORAGE = 0, LOCAL_STORAGE = 1 } export declare const AUTH_CONFIG_DEFAULTS: IAuthConfig, AUTH_ROUTE_DEFAULTS: IAuthRoute; export declare function tokenNotExpired(tokenName?: string, jwt?: string): boolean;