import { Hash } from '../../domain/Hash';
/**
 * a simple function which converts a string into an sha256 hash
 *
 * ref
 * - https://stackoverflow.com/a/48161723/3068233
 */
export declare const asHashSha256: (message: string) => Promise<Hash>;
