import type { SyncSqliteDatabase } from './sqlite-runtime.js'; export interface SeedResult { applied: boolean; bytes: number; } /** * Apply db/seed.sql to the open db. Idempotency is the user's responsibility * (e.g. `INSERT OR IGNORE`, upserts). Returns `applied: false` if the file * doesn't exist; throws on SQL errors. */ export declare function seed(db: SyncSqliteDatabase, seedFile: string): SeedResult;