/** * Parses common Web3/RPC errors and returns user-friendly error messages * Covers errors from viem, wagmi, and blockchain interactions * Based on viem error types: https://v1.viem.sh/docs/glossary/errors.html */ export declare function parseTransactionError(error: unknown): { title: string; message: string; action?: string; };