/** * params. js */ export type HashTypes = 'SHA3-512' | 'SHA3-384' | 'SHA3-256' | 'SHA3-224' | 'SHA-256' | 'SHA-384' | 'SHA-512' | 'SHA-1' | 'MD5'; export type Sha3LenType = 224 | 256 | 384 | 512; declare const params: { [index: string]: { [index: string]: { nodeName: string; hashSize: number; }; }; }; export default params;