import type { Readable } from 'stream'; import type { FileSystem } from '@atlaspack/types-internal'; export declare function hashStream(stream: Readable): Promise; export declare function hashObject(obj: { readonly [key: string]: unknown; }): string; export declare function hashFile(fs: FileSystem, filePath: string): Promise;