import Database from 'better-sqlite3';
/**
 * Returns the singleton SQLite database instance.
 * Creates the database on first call and initializes it with proper settings.
 */
declare function getDonobuSqliteDatabase(): Database.Database;
/**
 * Closes the database connection. Should be called during application shutdown.
 */
declare function closeDonobuSqliteDatabase(): void;
export { getDonobuSqliteDatabase, closeDonobuSqliteDatabase };
//# sourceMappingURL=DonobuSqliteDb.d.ts.map