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