import { Abi } from 'abitype'; import { ContractInterface } from 'ethers/lib/ethers'; export declare function parseContractResult({ abi, data, functionName, }: { abi: ContractInterface | Abi | readonly unknown[]; data: any; functionName: string; }): any;