export declare class Hash { static sha256(data: Uint8Array): Uint8Array; static keccak256(data: Uint8Array): Uint8Array; static hash256(data: Uint8Array): Uint8Array; static truncHashPortion(str: string, firstCharCount?: number, endCharCount?: number): string; }