export type Algorithms = 'SHA-1' | 'SHA-256' | 'SHA-384' | 'SHA-512'; export declare function hash(algorithm?: Algorithms, message?: string, defaultValue?: string): Promise;