///
import { Provider, Tag } from '../interfaces';
interface GetBlockByNumberArgs {
number: Tag | number;
fullTransactions?: boolean;
}
/**
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getblockbynumber
*/
export declare const getBlockByNumber: import("ramda").CurriedFunction2>;
interface GetBlockByHashArgs {
hash: string;
fullTransactions?: boolean;
}
/**
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getblockbyhash
*/
export declare const getBlockByHash: import("ramda").CurriedFunction2>;
export {};