/** * Returns the sha256 encoded hash of the given data. * @param data The data to encode. * @returns The sha256 encoded hash of the given data. * @category Utils */ export declare const sha256: (data: Uint8Array) => Uint8Array;