import { ConfigurationService } from '../configurationService/configurationService'; export declare class TransactionReadableService { private configurationService; constructor(configurationService: ConfigurationService); getReadableTransaction({ data, transaction }: { data: any; transaction: any; }): { contractName: string; from: any; to: any; constant: any; inputs: any; name: any; outputs: any; payable: any; stateMutability: any; type: any; signature: any; arguments: any; }; }