export declare class HashUtils {
    static readonly algo = "sha1";
    static isSha1(string: string): boolean;
    static getHash(buffer: Buffer | string): string;
    static getFileHash(file: string): Promise<string>;
}
