import { Rpc } from '../rpc'; import { RpcAliveData } from './rpc-alive-model'; export declare class RpcAliveClient { /** * The alive command. * * @param rpc the Rpc instance. * @param data the Rpc alive data object. * @return Promise the promise object. */ static alive(rpc: Rpc, data?: RpcAliveData): Promise; /** * The alive forever command. * * @param rpc the Rpc instance. * @return Promise the promise object. */ static forever(rpc: Rpc): Promise; /** * The reset forever state command. * * @param rpc the Rpc instance. * @return Promise the promise object. */ static reset(rpc: Rpc): Promise; }