import { Config } from './types/config'; import { HashResult, LocalHashObj } from './types/typings'; /** * Class for hashing and verifying sl-user passwords */ export declare class Hashing { hashers: any[]; times: number[]; dummyHashObject: LocalHashObj; constructor(config: Partial); private getHasherForTimestamp; hashUserPassword(pw: string): Promise; verifyUserPassword(hashObj: HashResult, pw: string): Promise; }