import type { SqliteWasmDatabase } from "./create-in-memory-database.js"; /** * Loads serialized SQLite bytes into an in-memory database. * * The content is copied into the provided database and made available under * the configured schema. By default the database becomes writable, but you can * force read-only mode through the `readOnly` option. * * @example * importDatabase({ db, content: new Uint8Array(bytes) }); */ export declare const importDatabase: ({ db, content, schema, readOnly, }: { db: SqliteWasmDatabase; content: Uint8Array; schema?: string; readOnly?: boolean; }) => SqliteWasmDatabase; //# sourceMappingURL=import-database.d.ts.map