import { BytesLike, HexString } from './bytes'; export type LeafHash = (leaf: T) => HexString; export type NodeHash = (left: BytesLike, right: BytesLike) => HexString; export declare function keccak256(input: BytesLike): HexString; export declare function standardLeafHash(types: string[], value: T): HexString; export declare function standardNodeHash(a: BytesLike, b: BytesLike): HexString; //# sourceMappingURL=hashes.d.ts.map