import { HashFunction } from './hash.js'; declare class Ripemd160 implements HashFunction { readonly blockSize: number; private readonly impl; constructor(firstData?: Uint8Array); update(data: Uint8Array): Ripemd160; digest(): Uint8Array; } /** Convenience function equivalent to `new Ripemd160(data).digest()` */ declare function ripemd160(data: Uint8Array): Uint8Array; export { Ripemd160, ripemd160 };