/** Return whether an error carries a SQLite result code. */ export declare function isSqliteError(error: unknown): boolean; /** Return whether an error is one of SQLite's explicit database-corruption classes. */ export declare function isSqliteCorruptionError(error: unknown): boolean;