import { IUser } from "../interfaces/IUser"; export declare class TokenResult { username?: string; token?: string; isExpiring: boolean; error?: string; session?: string; constructor(); /** * @method SetError Set and error message and return the result */ SetError(error: string): TokenResult; /** * @method SetUser Set user information and return the object */ SetUser(user: IUser, token?: string): TokenResult; } //# sourceMappingURL=TokenResult.d.ts.map