import type { ActiveDatabaseHandle } from "./connectionContext.ts"; type SqliteConnection = ActiveDatabaseHandle & { close(): void; }; declare function createSqliteConnection(filename: string): SqliteConnection; export type { SqliteConnection }; export { createSqliteConnection };