import { PasswordEncoderInterface } from '../interfaces'; export declare class BcryptPasswordEncoder implements PasswordEncoderInterface { static readonly ENCODER_NAME = "bcrypt"; encodePassword(raw: string): Promise; isPasswordValid(encoded: string, raw: string): Promise; getName(): string; }