import type { NodePgDatabase } from "drizzle-orm/node-postgres"; import { type DdlBootstrapper } from "@rebasepro/server"; /** * A {@link DdlBootstrapper} that runs its statements through `db.execute`. * * @param db the Drizzle handle the calling store already holds * @param scope log prefix identifying the caller, e.g. `"channel-presence"` */ export declare function drizzleDdlBootstrapper(db: NodePgDatabase>, scope: string): DdlBootstrapper;