import { BigNumberish } from '../utils/numerics';
import { PayableOverrides } from 'ethers';
import { Interface } from '@ethersproject/abi';
import { Multicall } from '../abis/types';
import { TradeAction } from '../common/types';
export interface MultiCall {
    contractAddress: string;
    interface: Interface;
    methodName: string;
    methodParameters: any[];
}
export declare const multicall: (calls: MultiCall[], multicallContract: Multicall, blockHeight?: number) => Promise<(import("@ethersproject/abi").Result | never[])[] | undefined>;
export declare const isETHAddress: (address: string) => boolean;
export declare const buildTradeOverrides: (sourceToken: string, tradeActions: TradeAction[], byTarget: boolean, maxInput: BigNumberish, overrides?: PayableOverrides) => PayableOverrides;
//# sourceMappingURL=utils.d.ts.map