///
import { OracleResult, OracleCallerOptions } from './types';
declare const OracleCaller: (options: OracleCallerOptions) => {
networkStats: {
count: number;
lastDownloadTime: number;
bytesDown: number;
bytesUp: number;
};
callOracle: (payload: Buffer) => Promise;
};
export default OracleCaller;