/**
 * Computes the SHA-256 hash of the given data.
 *
 * @param data - the data to hash
 */
export declare function hash(data: Buffer | string): Buffer;
