/** Hash */ export interface IHash { type: TYPE; value: string; } /** Supported hash types */ export declare enum TYPE { KECCAK256 = "keccak256" } //# sourceMappingURL=hash-types.d.ts.map