///
import { Provider, RequestInputParams, Tag, NumberLike } from '../../interfaces';
import { MethodInput } from './utils';
export interface CallInput extends MethodInput {
txParams: RequestInputParams;
atBlock?: Tag | NumberLike;
}
/**
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_call
*/
export declare const sendCall: import("ramda").CurriedFunction2, Promise>;