#!/usr/bin/env bun import { type DatabaseTarget } from "./database-url.js"; export interface MigrationResult { backend: DatabaseTarget["kind"]; applied: string[]; } /** * Apply pending migrations to whatever backend `databaseUrl` names. * * @param migrationsDir override for the directory holding this dialect's .sql files. * Defaults to the dialect subdirectory of the package's migrations/ folder. */ export declare function runMigrations(databaseUrl?: string, migrationsDir?: string): Promise;