/**
* @categoryCrypto
* @description Method to calculate SHA256 hash of the arbitrary data (bytes array or string)
* @param data Data to calculate hash
* @returns 32-bytes array with the SHA256 hash of the data
*/exportdeclareconstsha256: (data: string | Uint8Array) =>Uint8Array;