/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/26/2020 * Time: 5:00 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { Manager } from '../Support/Manager'; import { Hasher } from '../Contracts/Hashing/Hasher'; import { BcryptHasher } from './BcryptHasher'; export declare class HashManager extends Manager implements Hasher { getDefaultDriver(): any; createBcryptDriver(): BcryptHasher; make(data: any, options?: any): string; check(check: any, hashedValue: any, options?: {}): boolean; }