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