export default interface Encrypts {
genHash: GenerateHash;
verify: PasswordVerification;
}
export declare type GenerateHash = (pw: string) => Promise<string>;
export declare type PasswordVerification = (
pw: string,
hash: string
) => Promise<boolean>;