import { RxStorage, RxStorageInstanceCreationParams } from '../../index.ts'; import { RxStorageInstanceSQLite } from './sqlite-storage-instance.ts'; import type { SQLiteInternals, SQLiteInstanceCreationOptions, SQLiteStorageSettings } from './sqlite-types.ts'; export * from './sqlite-helpers.ts'; export * from './sqlite-types.ts'; export * from './sqlite-storage-instance.ts'; export * from './sqlite-basics-helpers.ts'; export declare class RxStorageSQLiteTrial implements RxStorage { settings: SQLiteStorageSettings; name: string; readonly rxdbVersion = "17.1.0"; constructor(settings: SQLiteStorageSettings); createStorageInstance(params: RxStorageInstanceCreationParams): Promise>; } export declare function getRxStorageSQLiteTrial(settings: SQLiteStorageSettings): RxStorageSQLiteTrial;