import { type ContractRunner } from "ethers";
import type { IMulticall, IMulticallInterface } from "../IMulticall";
export declare class IMulticall__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "multicall";
        readonly inputs: readonly [{
            readonly name: "data";
            readonly type: "bytes[]";
            readonly internalType: "bytes[]";
        }];
        readonly outputs: readonly [{
            readonly name: "results";
            readonly type: "bytes[]";
            readonly internalType: "bytes[]";
        }];
        readonly stateMutability: "payable";
    }];
    static createInterface(): IMulticallInterface;
    static connect(address: string, runner?: ContractRunner | null): IMulticall;
}
