import type { Client } from "@libsql/client"; export interface Migration { version: number; name: string; sql: string; afterApply?: (db: Client, options?: { podRid?: string; podRoot?: string; }) => Promise; } export declare const MIGRATIONS: readonly Migration[]; //# sourceMappingURL=migrations.d.ts.map