import { PasswordHasherService } from './password-hasher.service';
export interface IPbkdf2Hash {
    hash: string;
    salt: string;
}
export declare class Pbkdf2PasswordHasherService implements PasswordHasherService<IPbkdf2Hash> {
    hash(password: string): Promise<IPbkdf2Hash>;
    compare(password: string, hashedPassword: IPbkdf2Hash): Promise<boolean>;
}
