/// import { Readable } from 'stream'; export declare type Manifest = { [filepath: string]: string; }; export declare type Diff = { added: string[]; modified: string[]; removed: string[]; }; export declare function getManifestFromUri(url: string): Promise; export declare function getManifestFromFile(filepath: string): Promise; export declare function compareManifests(a: Manifest, b: Manifest): Diff; export declare function getManifestFromStream(readable: Readable): Promise;