import type { FunctionDefinition } from '../../definition_types'; /** * Computes the MD5 hash of the input (if the MD5 hash is available on the JVM). * * @example * FROM sample_data * | WHERE message != "Connection error" * | EVAL md5 = md5(message) * | KEEP message, md5 */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=md5.d.ts.map