/****************************************************************************** * * (C) 2022 AhnLab Blockchain Company, Inc. All rights reserved. * Any part of this source code can not be copied with any method without * prior written permission from the author or authorized person. * ******************************************************************************/ import { ethers } from 'ethers'; declare class InputDataDecoder { abi: any; constructor(prop: any); decodeConstructor(data: any): { method: any; types: any; inputs: ethers.utils.Result; names: any; }; decodeData(data: any): any; } export default InputDataDecoder;