import { RpcBase, Value } from 'lite-ts'; import { ValueHandlerBase } from './handler-base'; import { ValueHandlerContext } from './handler-context'; export declare class UpdateRpcValueHandler extends ValueHandlerBase { private m_Rpc; private m_Route; private m_AppendBodyAction; private m_Body; constructor(m_Rpc: RpcBase, m_Route: string, m_AppendBodyAction: (body: any, value: Value) => void); handle(ctx: ValueHandlerContext): Promise; private onCallRpc; }