import { HashFunction } from "./hash"; export declare class Keccak256 implements HashFunction { readonly blockSize: number; private readonly impl; constructor(firstData?: Uint8Array); update(data: Uint8Array): this; digest(): Uint8Array; } /** Convenience function equivalent to `new Keccak256(data).digest()` */ export declare function keccak256(data: Uint8Array): Uint8Array;