import { type Account } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Inserts an accounts credential row from a caller-normalized email and precomputed password hash. * This low-level primitive deliberately leaves registration eligibility and hashing policy to the authenticated workflow that invokes it. */ export declare function accountCreatePassword(executor: DrizzleExecutor, email: string, passwordHash: string): Promise; //# sourceMappingURL=accountCreatePassword.d.ts.map