import type { SQLiteDatabase, SQLiteRunResult } from 'expo-sqlite'; import { entityKind } from "../entity.js"; import { BaseSQLiteDatabase } from "../sqlite-core/db.js"; import type { DrizzleConfig } from "../utils.js"; export declare class ExpoSQLiteDatabase = Record> extends BaseSQLiteDatabase<'sync', SQLiteRunResult, TSchema> { static readonly [entityKind]: string; } export declare function drizzle = Record>(client: SQLiteDatabase, config?: DrizzleConfig): ExpoSQLiteDatabase & { $client: SQLiteDatabase; };