/** * Returns an hexadecimal sha256 hash of the message passed as parameter. * @param message Message to hash. * @returns The hexadecimal hash of the message. */ export default function sha256(message: string): string;