import * as i0 from "@angular/core"; /** * Abstraction for crypto algorithms */ export declare abstract class HashHandler { abstract calcHash(valueToHash: string, algorithm: string): Promise; } export declare class DefaultHashHandler implements HashHandler { calcHash(valueToHash: string, algorithm: string): Promise; toHashString2(byteArray: number[]): string; toHashString(buffer: ArrayBuffer): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }