import type { ResultSet } from '@libsql/client'; import type { BatchItem, BatchResponse } from "../batch.js"; import { entityKind } from "../entity.js"; import { BaseSQLiteDatabase } from "../sqlite-core/db.js"; export declare class LibSQLDatabase = Record> extends BaseSQLiteDatabase<'async', ResultSet, TSchema> { static readonly [entityKind]: string; batch, T extends Readonly<[U, ...U[]]>>(batch: T): Promise>; }