import type { Chain } from '@rarimo/shared'; import { Transaction } from '@solana/web3.js'; import type { SolanaProviderRpcError } from './types'; export declare function handleSolError(error: SolanaProviderRpcError): void; export declare function decodeSolanaTx(tx: string): Transaction; export declare function getSolExplorerTxUrl(chain: Chain, txHash: string): string; export declare function getSolExplorerAddressUrl(chain: Chain, address: string): string;