import type { FunctionDefinition } from '../../definition_types'; /** * Computes the hash of the input using various algorithms such as MD5, SHA, SHA-224, SHA-256, SHA-384, SHA-512. * * @example * FROM sample_data * | WHERE message != "Connection error" * | EVAL md5 = hash("md5", message), sha256 = hash("sha256", message) * | KEEP message, md5, sha256 */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=hash.d.ts.map