export interface IHashOptions {
    saltlen?: number;
    iterations: number;
    keylen: number;
    digest: string;
}
export declare function hash(password: string, options?: IHashOptions): Promise<string>;
export declare function verify(password: string, hash: string): Promise<boolean>;
