export type VaulxErrorCode = "INSUFFICIENT_BALANCE" | "INSUFFICIENT_GAS" | "POLICY_VIOLATION" | "POLICY_EXPIRED" | "UNKNOWN_TOKEN" | "UNKNOWN_CHAIN" | "UNSUPPORTED_OPERATION" | "SIGNER_ERROR" | "TX_FAILED" | "TX_TIMEOUT" | "TX_REVERTED" | "NONCE_ERROR" | "AUTH_FAILED" | "CONFIG_ERROR" | "SESSION_EXPIRED" | "APPROVAL_EXCEEDED" | "SLIPPAGE_EXCEEDED" | "RPC_ERROR" | "BUNDLER_ERROR" | "EXPLORER_ERROR"; export declare class VaulxError extends Error { readonly code: VaulxErrorCode; readonly details?: Record | undefined; constructor(message: string, code: VaulxErrorCode, details?: Record | undefined); } //# sourceMappingURL=errors.d.ts.map