import { type Account } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Creates a password-backed accounts credential after enforcing both bootstrap ownership and the current public-registration policy. * The registration transaction makes the policy decision and unique credential insertion one race-safe operation across server instances. */ export declare function accountRegisterPassword(executor: DrizzleExecutor, email: string, passwordHash: string): Promise; //# sourceMappingURL=accountRegisterPassword.d.ts.map