/** * Copyright (c) 2025 Elara AI Pty Ltd * Licensed under BSL 1.1. See LICENSE for details. */ export { BEAST2_CONTENT_TYPE } from '@elaraai/e3-types'; /** * Calculate SHA256 hash of data. * * This is the core hashing function used throughout e3 for content addressing. * It's storage-agnostic and can be used with any backend. * * @param data - Data to hash * @returns SHA256 hash as a hex string */ export declare function computeHash(data: Uint8Array): string; //# sourceMappingURL=objects.d.ts.map