//#region src/crypto/password.d.ts
declare const hashPassword: (password: string) => Promise<string>;
declare const verifyPassword: ({
  hash,
  password
}: {
  hash: string;
  password: string;
}) => Promise<boolean>;
//#endregion
export { hashPassword, verifyPassword };
//# sourceMappingURL=password.d.mts.map