import type { Client } from '@libsql/client'; export interface Migration { version: number; description: string; statements: string[]; } export declare const migrations: Migration[]; /** * Run pending migrations against the database. * Safe to call on every startup — only runs migrations newer than the current version. */ export declare function runMigrations(client: Client): Promise; //# sourceMappingURL=migrations.d.ts.map