import { SRPInt } from './SRPInt';
import type { HashAlgorithm } from './types';
export declare const hash: (hashAlgorithm: HashAlgorithm, ...input: (SRPInt | string)[]) => Promise<SRPInt>;
