import { _ as OneAuthErrorDetails } from './types-BN6cCuAd.mjs'; /** * Error thrown by SDK adapters that must use exception-based APIs, such as * EIP-1193, viem accounts, wallet clients, and React callbacks. * * `code` is stable enough for application branching. `details` contains * provider/orchestrator diagnostics such as trace IDs and simulation URLs. */ declare class OneAuthError extends Error { readonly code: string; readonly details?: OneAuthErrorDetails; constructor(code: string, message: string, details?: OneAuthErrorDetails); } export { OneAuthError as O };