/**
 * Code related to SHA_256
 * @module
 */
import { Sha256ArrayBuffer } from "./shared.js";
/**
 * Get the digest of the buffer
 * @example
 * ```ts
 * const buffer = new TextEncoder().encode("a file");
 * const digest = SHA_256.digest(buffer);
 * ```
 */
export declare const digest: (data: BufferSource) => Promise<Sha256ArrayBuffer>;
/**
 * Get the hex string of the digest
 * @example
 * ```ts
 * const hash = SHA_256.hexify(digest);
 * ```
 */
export declare const hexify: (digest: Sha256ArrayBuffer) => string;
//# sourceMappingURL=sha_256.d.ts.map