import { LocalHashObj } from './types/typings'; export declare class Session { static invalidErr: { status: number; message: string; }; constructor(); /** * Confirms that the password matches with the provided token and returns the * token, if successful, but removes the information that should not be sent * to the client. */ confirmToken(token: T, password: string): Promise>; }