import { Config } from "@wagmi/core"; import { Abi } from "viem"; export declare const multicall: (config: Config, { to, abi, functionName, args }: { to: `0x${string}` | `0x${string}`[]; abi: Abi; functionName: string; args: string[][]; }) => Promise<({ error?: undefined; result: unknown; status: "success"; } | { error: Error; result?: undefined; status: "failure"; })[]>;