import { ISQLite, OpenOptions, QuickSQLiteConnection } from './types'; /** * Generates the entry point for opening concurrent connections * @param proxy * @returns */ export declare function setupOpen(QuickSQLite: ISQLite): { /** * Opens a SQLite DB connection. * By default opens DB in WAL mode with 4 Read connections and a single * write connection */ open: (dbName: string, options?: OpenOptions) => QuickSQLiteConnection; }; //# sourceMappingURL=setup-open.d.ts.map