import { ConfigService } from '../../../config/config.service'; /** * @description * Used in the {@link NativeAuthenticationStrategy} when hashing and checking user passwords. */ export declare class PasswordCipher { private configService; constructor(configService: ConfigService); hash(plaintext: string): Promise; check(plaintext: string, hash: string): Promise; }