export type HashableContent = AsyncGenerator | AsyncIterable | Uint8Array; /** * Calculates a Qm prefixed hash for Decentraland (NOT CIDv0) from a readable stream * * @public * @deprecated use hashV1 instead, this function exists for backwards compatibility reasons. */ export declare function hashV0(stream: HashableContent): Promise; /** * Calculates a CIDv1 from a readable stream * @public */ export declare function hashV1(content: HashableContent): Promise; //# sourceMappingURL=node.d.ts.map