import type { ValueOf } from 'type-fest'; import { StorageErrorClass } from '../errors'; /** * Classifies a SQLite write failure into the shared storage taxonomy (lib/storage/errors.ts). * This is the SQLite engine's own dialect — it is NOT shared with other engines. It lives in a * standalone module (no `react-native-nitro-sqlite` import) so it can be reused without pulling in * native dependencies. * * SQLite surfaces fewer distinct write-failure shapes than IndexedDB. As telemetry from the UNKNOWN * bucket (see OnyxUtils.retryOperation) reveals recurring native errors, add matchers here. */ declare function classifySQLiteError(error: unknown): ValueOf; export default classifySQLiteError;