/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/26/2020 * Time: 8:49 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { Hasher } from '../Contracts/Hashing/Hasher'; export declare class BcryptHasher implements Hasher { protected _bcry: any; protected _rounds: number; constructor(options?: { rounds?: number; }); check(check: any, hashedValue: any, options?: any): boolean; make(value: any, options?: any): string; setRounds(rounds: number): this; }