import { IBlockchainExplorer } from '../explorer/IBlockchainExplorer'; import { Web3Client } from '../clients/Web3Client'; import { TEth } from '../models/TEth'; export declare class GnosisSafeService { client: Web3Client; explorer: IBlockchainExplorer; constructor(client: Web3Client, explorer: IBlockchainExplorer); decodeSafeTx(dataHex: TEth.Hex, options?: { decodeContractCall: boolean; }): Promise<{ method: string; arguments: any[]; value: number | bigint; address: `0x${string}`; }>; private decodeOperation; private decodeMultiSend; }