import { Rpc } from '../rpc'; import { RpcReportData } from './rpc-report-model'; export declare class RpcReportClient { /** * The report data command. * * @param data the report data object. * @return Promise the promise object. */ static report(rpc: Rpc, data: RpcReportData): Promise; }