import type { ICrypto } from '../../core'; export declare class NodeCrypto implements ICrypto { hashString(input: string, algorithm: 'MD5' | 'sha256'): string; randomInt(max: number): number; }