/**
 * Calculates the SHA256 of the specified byte array
 *
 * @param bytes  The Uint8Array of the byte array
 * @returns      The SHA256 as a Uint32Array
 */
declare const sha256: (bytes: Uint8Array) => Uint32Array;
export { sha256 };
