import type { Bytes } from '@tendermint/types';
/**
 * sha256 encryption of a byte array
 * @param bytes a byte array (Uint8Array)
 * @returns a sha256 encryted version of the given byte array
 */
export declare const sha256: (bytes: Bytes) => Bytes;
