export interface Call { address: string; name: string; params?: any[]; } declare const multicall: (chainId: number, abi: any[], calls: Call[], batch?: boolean, batchSize?: number) => Promise; export default multicall;