import { type Account } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Resolves the account credential row for an exact email address during password authentication. * Returning the canonical account regardless of active or banned state leaves credential verification and eligibility checks as separate, auditable decisions. */ export declare function accountFindPassword(executor: DrizzleExecutor, email: string): Promise; //# sourceMappingURL=accountFindPassword.d.ts.map