import { RemoteValueProtocol } from 'blackbox-rules'; export default class DefaultRemoteValueProtocol implements RemoteValueProtocol { lookupAgentValueAddress(agentAddress: string): string; setValue(agentValueAddress: string, remoteValueName: string, value: T): Promise; getValue(agentValueAddress: string, remoteValueName: string): Promise; }