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<void> the promise object.
     */
    static report(rpc: Rpc, data: RpcReportData): Promise<void>;
}
