/** * Compute SHA-256 hash of a string */ export declare function computeHash(input: string): string; /** * Compute SHA-256 hash of a file */ export declare function computeFileHash(filePath: string): Promise; //# sourceMappingURL=hash.d.ts.map