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