import type { EntityRegistry, NormalizedStoreLogger } from "../types.js"; import type { SqliteDatabase } from "../storage/sqlite/types.js"; import type { RuntimeSqliteQueryOptions, StoreRuntimeSqlite, StoreRuntimeSqliteOptions } from "./sqlite/types.js"; declare function createRuntimeSqlite(options: StoreRuntimeSqliteOptions | undefined, entities: EntityRegistry, logger: NormalizedStoreLogger | null): { client: SqliteDatabase | null; sqlite: StoreRuntimeSqlite; }; declare function validateRuntimeSqliteQuery(sql: string, params: readonly unknown[], options: RuntimeSqliteQueryOptions | undefined): void; export { createRuntimeSqlite, validateRuntimeSqliteQuery, }; //# sourceMappingURL=sqlite.d.ts.map