/// import * as sqlite3 from 'sqlite3'; import { Statement } from './Statement'; import { Database } from './Database'; import { ISqlite, IMigrate } from './interfaces'; /** * Opens a database for manipulation. Most users will call this to get started. */ declare function open(config: ISqlite.Config): Promise; export { open, Statement, Database, ISqlite, IMigrate };